| 1234567891011121314151617181920212223242526272829303132333435 |
- cmake_minimum_required(VERSION 3.20)
- project(SunrisePortableTests LANGUAGES CXX)
- enable_testing()
- add_executable(socket_row_relocation_test socket_row_relocation_test.cpp)
- target_compile_features(socket_row_relocation_test PRIVATE cxx_std_20)
- if(MSVC)
- target_compile_options(socket_row_relocation_test PRIVATE /W4 /WX /UNDEBUG)
- else()
- target_compile_options(socket_row_relocation_test PRIVATE -Wall -Wextra -Werror -UNDEBUG)
- endif()
- add_test(NAME socket_row_relocation
- COMMAND socket_row_relocation_test "${CMAKE_CURRENT_SOURCE_DIR}/fixtures/socket_rows.hex")
- add_executable(lore_visibility_test lore_visibility_test.cpp)
- target_compile_features(lore_visibility_test PRIVATE cxx_std_20)
- if(MSVC)
- target_compile_options(lore_visibility_test PRIVATE /W4 /WX /UNDEBUG)
- else()
- target_compile_options(lore_visibility_test PRIVATE -Wall -Wextra -Werror -UNDEBUG)
- endif()
- add_test(NAME lore_visibility COMMAND lore_visibility_test)
- set(SRC "${CMAKE_CURRENT_SOURCE_DIR}/../Sunrise/src")
- add_executable(map_generator_auth_test map_generator_auth_test.cpp
- "${SRC}/middleware/bap/activity_message/activity_sensor_auth_bodies.cpp"
- "${SRC}/middleware/bap/activity_message/activity_sensor_auth_blocks.cpp"
- "${SRC}/middleware/encoding/bit_reader.cpp"
- "${SRC}/middleware/encoding/bit_writer.cpp")
- target_include_directories(map_generator_auth_test PRIVATE "${SRC}")
- target_compile_features(map_generator_auth_test PRIVATE cxx_std_20)
- if(MSVC)
- target_compile_options(map_generator_auth_test PRIVATE /W4 /WX /UNDEBUG)
- else()
- target_compile_options(map_generator_auth_test PRIVATE -Wall -Wextra -Werror -UNDEBUG)
- endif()
- add_test(NAME map_generator_auth COMMAND map_generator_auth_test)
|