CMakeLists.txt 316 Bytes
Newer Older
f3nix's avatar
f3nix committed
1 2 3 4 5
if(WIN32)
    add_definitions(-D_MSWVC_)
else(WIN32)
    add_definitions(-D__UNIX__)
endif(WIN32)
6

7 8

include_directories(../include)
9 10 11 12 13 14 15 16 17 18 19 20

set(KBOOL_SRCS
    booleng.cpp
    graph.cpp
    graphlst.cpp
    line.cpp
    link.cpp
    lpoint.cpp
    node.cpp
    record.cpp
    scanbeam.cpp)

f3nix's avatar
f3nix committed
21
add_library(kbool ${KBOOL_SRCS})