mirror of https://github.com/AxioDL/nod.git
8 lines
159 B
CMake
8 lines
159 B
CMake
|
add_executable(nodtool
|
||
|
main.cpp)
|
||
|
|
||
|
target_link_libraries(nodtool NOD LogVisor)
|
||
|
if (NOT WIN32)
|
||
|
target_link_libraries(nodtool pthread)
|
||
|
endif()
|