10 lines
280 B
CMake
10 lines
280 B
CMake
|
|
add_executable(helloworld hello.c)
|
|
if(WIN32)
|
|
target_link_libraries(helloworld test-lib ws2_32 userenv)
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
target_link_libraries(helloworld test-lib resolv)
|
|
else()
|
|
target_link_libraries(helloworld test-lib pthread dl m)
|
|
endif()
|