47362559ef
This PR adds a test architecture to be able to test plugins Main infrastructure done by @WerWolv --------- Co-authored-by: WerWolv <werwolv98@gmail.com>
11 lines
289 B
CMake
11 lines
289 B
CMake
project(unit_tests)
|
|
|
|
add_custom_target(unit_tests DEPENDS imhex_all helpers algorithms plugins)
|
|
|
|
add_subdirectory(common)
|
|
target_compile_definitions(tests_common PUBLIC IMHEX_PROJECT_NAME="${PROJECT_NAME}")
|
|
|
|
add_subdirectory(helpers)
|
|
add_subdirectory(algorithms)
|
|
add_subdirectory(plugins)
|