forked from teamnwah/openmw-tes3coop
5 lines
207 B
CMake
5 lines
207 B
CMake
project(clientconsole)
|
|
find_package(Boost REQUIRED COMPONENTS system)
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
|
add_executable(clientconsole client.cpp)
|
|
target_link_libraries(clientconsole ${Boost_LIBRARIES})
|