aswm/test/CMakeLists.txt
2026-08-25 20:47:49 +02:00

23 lines
610 B
CMake

FetchContent_Declare(
unity
GIT_REPOSITORY https://github.com/ThrowTheSwitch/Unity.git
GIT_TAG v2.6.1
)
FetchContent_MakeAvailable(unity)
add_compile_definitions(ASWM_TEST_DIR="${CMAKE_CURRENT_SOURCE_DIR}")
add_executable(test_aswm
test_set_up.c
utils.c
aswm/aswm.c
aswm/create_windows/single_resizeable.c
aswm/create_windows/multiple_resizeable.c
aswm/create_windows/single_fixed_size.c
aswm/property/fix_size.c
aswm/input_focus/init.c
)
target_include_directories(test_aswm PUBLIC ${unity_SOURCE_DIR}/src)
target_link_libraries(test_aswm libaswm unity)
enable_testing()
add_test(aswm test_aswm)