mirror of
https://github.com/fumiama/simple-kanban.git
synced 2026-06-08 01:51:32 +08:00
14 lines
318 B
CMake
14 lines
318 B
CMake
project(simple-kanban)
|
|
|
|
include(TestBigEndian)
|
|
test_big_endian(isBigEndian)
|
|
if (${isBigEndian})
|
|
set ( WORDS_BIGENDIAN 1 )
|
|
endif()
|
|
|
|
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)
|