1
0
mirror of https://github.com/fumiama/simple-kanban.git synced 2026-06-11 12:10:30 +08:00
Files
simple-kanban/CMakeLists.txt
2021-05-07 22:53:18 +08:00

16 lines
363 B
CMake

project(simple-kanban)
include(TestBigEndian)
test_big_endian(isBigEndian)
if (${isBigEndian})
add_definitions(-DWORDS_BIGENDIAN)
endif()
#add_definitions(-DLISTEN_ON_IPV6)
add_executable(simple-kanban server.c)
add_executable(simple-kanban-client client.c)
target_link_libraries(simple-kanban pthread)
target_link_libraries(simple-kanban-client pthread)