1
0
mirror of synced 2024-11-28 09:30:51 +01:00
ImHex/tests/common/CMakeLists.txt
iTrooz 47362559ef
tests: Add infrastructure for testing plugins (#1538)
This PR adds a test architecture to be able to test plugins

Main infrastructure done by @WerWolv

---------

Co-authored-by: WerWolv <werwolv98@gmail.com>
2024-02-26 20:51:08 +01:00

9 lines
196 B
CMake

cmake_minimum_required(VERSION 3.16)
project(tests_common)
add_library(tests_common STATIC
source/main.cpp
)
target_link_libraries(tests_common PUBLIC libimhex ${FMT_LIBRARIES} libwolv)