This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
pix-draw-studio/tests/CMakeLists.txt

18 lines
258 B
CMake
Raw Permalink Normal View History

2024-01-10 17:32:26 +00:00
cmake_minimum_required(VERSION 3.2)
project(pix-draw-studio-tests)
find_package(Catch2 REQUIRED)
add_executable(pix-test
main.cpp
# keys
KeyMod.cpp
Shortcut.cpp
ShortcutListener.cpp
)
target_link_libraries(pix-test
$<TARGET_OBJECTS:pixlib>
)