mirror of
https://github.com/fumiama/simple-kanban.git
synced 2026-06-08 18:10:24 +08:00
16 lines
354 B
CMake
16 lines
354 B
CMake
project(simple-kanban)
|
|
|
|
include(TestBigEndian)
|
|
test_big_endian(isBigEndian)
|
|
if (${isBigEndian})
|
|
set ( WORDS_BIGENDIAN 1 )
|
|
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)
|