| 1234567891011121314151617181920 |
- 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)
|