1
0
mirror of synced 2024-11-24 15:50:16 +01:00
ImHex/tests/helpers/CMakeLists.txt
KOLANICH 749823e044
build: Move -s additional compiler flags into linker flags, and enable it only when gcc/clang are used. (#1087)
Compiler when compiling doesn't use them in those cases and emit a
warning, which is turned into an error by `-Werror`. Unfortunately,
CPack doesn't expose the logic it uses for stripping binaries.
2023-05-20 13:37:57 +02:00

48 lines
1.1 KiB
CMake

cmake_minimum_required(VERSION 3.16)
project(helpers_test)
set(TEST_CATEGORY Helpers)
# Add new tests here #
set(AVAILABLE_TESTS
# Common
TestSucceeding
TestFailing
TestProvider_read
TestProvider_write
# Net
StoreAPI
TipsAPI
ContentAPI
# File
FileAccess
# Utils
SplitStringAtChar
SplitStringAtString
ExtractBits
)
add_executable(${PROJECT_NAME}
source/common.cpp
source/file.cpp
source/net.cpp
source/utils.cpp
)
# ---- No need to change anything from here downwards unless you know what you're doing ---- #
target_include_directories(${PROJECT_NAME} PRIVATE include)
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex tests_common ${FMT_LIBRARIES})
set_target_properties(${PROJECT_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
foreach (test IN LISTS AVAILABLE_TESTS)
add_test(NAME "${TEST_CATEGORY}/${test}" COMMAND ${PROJECT_NAME} "${test}" WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
endforeach ()
add_dependencies(unit_tests ${PROJECT_NAME})