From e4a0432383331e013808a97b7c24707e4ddc4726 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:23:19 +0200 Subject: Initial Commit --- tests/CMakeLists.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/CMakeLists.txt (limited to 'tests/CMakeLists.txt') 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) -- cgit v1.2.3