mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-25 23:09:36 +03:00
83a8239805
* update codes to run on Windows platform as well
* added cmake for client_server
* added scope parameters
* force use of unistd.h in non-windows
* use size_t instead of int
* use unsigned int instead of size_t
* clang-tidy fixes for ac0991eb51
* updated UDP server-client as well
* use unsigned int
* added documentation
* spell correction
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
46 lines
1.6 KiB
CMake
46 lines
1.6 KiB
CMake
# include(CheckIncludeFile)
|
|
# check_include_file(arpa/inet.h ARPA_HEADERS)
|
|
# if(NOT ARPA_HEADERS)
|
|
# check_include_file(winsock2.h WINSOCK_HEADER)
|
|
# if(NOT WINSOCK_HEADER)
|
|
# message(FATAL_ERROR "socket headers not found in system.")
|
|
# endif()
|
|
# endif()
|
|
|
|
# check_include_file(unistd.h HAS_UNISTD)
|
|
|
|
# If necessary, use the RELATIVE flag, otherwise each source file may be listed
|
|
# with full pathname. RELATIVE may makes it easier to extract an executable name
|
|
# automatically.
|
|
file( GLOB APP_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.c )
|
|
# file( GLOB APP_SOURCES ${CMAKE_SOURCE_DIR}/*.c )
|
|
# AUX_SOURCE_DIRECTORY(${CMAKE_CURRENT_SOURCE_DIR} APP_SOURCES)
|
|
foreach( testsourcefile ${APP_SOURCES} )
|
|
# I used a simple string replace, to cut off .cpp.
|
|
string( REPLACE ".c" "" testname ${testsourcefile} )
|
|
add_executable( ${testname} ${testsourcefile} )
|
|
|
|
if(OpenMP_C_FOUND)
|
|
target_link_libraries(${testname} PRIVATE OpenMP::OpenMP_C)
|
|
endif()
|
|
if(MATH_LIBRARY)
|
|
target_link_libraries(${testname} PRIVATE ${MATH_LIBRARY})
|
|
endif()
|
|
|
|
if(HAS_UNISTD)
|
|
target_compile_definitions(${testname} PRIVATE HAS_UNISTD)
|
|
endif()
|
|
# if(ARPA_HEADERS)
|
|
# target_compile_definitions(${testname} PRIVATE ARPA_HEADERS)
|
|
# else()
|
|
# target_compile_definitions(${testname} PRIVATE WINSOCK_HEADER)
|
|
# endif()
|
|
|
|
if(WIN32)
|
|
target_link_libraries(${testname} PRIVATE ws2_32) # link winsock library on windows
|
|
endif()
|
|
|
|
install(TARGETS ${testname} DESTINATION "bin/client_server")
|
|
|
|
endforeach( testsourcefile ${APP_SOURCES} )
|