mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 07:47:02 -05:00
23 lines
467 B
CMake
23 lines
467 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(tests)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
pattern_language
|
|
GIT_REPOSITORY https://github.com/WerWolv/PatternLanguage
|
|
GIT_TAG master
|
|
)
|
|
|
|
FetchContent_MakeAvailable(pattern_language)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(patterns)
|
|
add_subdirectory(includes)
|
|
add_subdirectory(magic)
|
|
|
|
add_custom_target(test_all DEPENDS patterns_tests includes_test magic_test) |