mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-02-09 05:48:53 -06:00
9 lines
226 B
CMake
9 lines
226 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(tests_common)
|
|
|
|
add_library(tests_common STATIC
|
|
source/main.cpp
|
|
)
|
|
target_include_directories(tests_common PUBLIC include)
|
|
target_link_libraries(tests_common PUBLIC libimhex) |