Skip to content

Commit

Permalink
correct path to specific platform
Browse files Browse the repository at this point in the history
  • Loading branch information
suhrm committed May 31, 2024
1 parent 9b7171c commit d1aca5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ if (${PROJECT_NAME} STREQUAL ${STEINWURF_TOP_NAME})

if (UNIX AND NOT APPLE)
# Linux-specific code
file(GLOB_RECURSE linux_sources test/src/platform/linux_os/*.cpp)
file(GLOB_RECURSE linux_sources test/src/detail/platform_linux/*.cpp)
list(APPEND tunnel_test_sources ${linux_sources})
elseif (APPLE)
# Apple-Darwin-specific code
file(GLOB_RECURSE darwin_sources test/src/platform/darwin_os/*.cpp)
file(GLOB_RECURSE darwin_sources test/src/detail/platform_unsupported/*.cpp)
list(APPEND tunnel_test_sources ${darwin_sources})
elseif (WIN32)
# Windows-specific code
file(GLOB_RECURSE windows_sources test/src/platform/windows_os/*.cpp)
file(GLOB_RECURSE windows_sources test/src/detail/platform_unsupported/*.cpp)
list(APPEND tunnel_test_sources ${windows_sources})
endif ()

Expand Down

0 comments on commit d1aca5c

Please sign in to comment.