diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:23:19 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:23:19 +0200 |
| commit | e4a0432383331e013808a97b7c24707e4ddc4726 (patch) | |
| tree | 3ef4465be03bc7b92a0b048f02f76475045404b6 /tests/CMakeLists.txt | |
| parent | 105732dde10b317a81d5a10a3f66b315d6f85015 (diff) | |
| download | srdwm-e4a0432383331e013808a97b7c24707e4ddc4726.tar.gz srdwm-e4a0432383331e013808a97b7c24707e4ddc4726.zip | |
Initial Commit
Diffstat (limited to 'tests/CMakeLists.txt')
| -rw-r--r-- | tests/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt new file mode 100644 index 0000000..2e9d292 --- /dev/null +++ b/tests/CMakeLists.txt @@ -0,0 +1,20 @@ +# Test configuration - temporarily disabled to focus on main executable +# find_package(GTest REQUIRED) + +# Test executables - only build the ones that can work for now +# add_executable(test_platform_factory test_platform_factory.cc) + +# Set include directories for all tests +# target_include_directories(test_platform_factory PRIVATE ${CMAKE_SOURCE_DIR}/src) + +# Set platform-specific settings for tests +# if(PLATFORM_LINUX) +# target_include_directories(test_platform_factory PRIVATE ${X11_INCLUDE_DIRS} ${WAYLAND_INCLUDE_DIRS} ${WLROOTS_INCLUDE_DIRS} ${XCB_INCLUDE_DIRS}) +# target_compile_definitions(test_platform_factory PRIVATE ${X11_CFLAGS_OTHER} ${WAYLAND_CFLAGS_OTHER} WLR_USE_UNSTABLE) +# endif() + +# Link test executables +# target_link_libraries(test_platform_factory GTest::gtest GTest::gtest_main) + +# Add tests +# add_test(NAME PlatformFactory COMMAND test_platform_factory) |
