mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-30 02:09:10 +03:00
dd89df3214
- Added support for the i3 focus command: https://i3wm.org/docs/userguide.html#_focusing_moving_containers - Laid down a lot of the foundation of i3 commands in general, including parsing - CI now builds against the latest version of Mir's libraries - Snap builds are now disabled while we wait to update to core24
25 lines
760 B
CMake
25 lines
760 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_COMPILER g++)
|
|
|
|
include_directories(
|
|
${PROJECT_SOURCE_DIR}/src
|
|
)
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(MIRAL miral REQUIRED)
|
|
find_package(GTest REQUIRED)
|
|
pkg_check_modules(YAML REQUIRED IMPORTED_TARGET yaml-cpp)
|
|
|
|
add_executable(miracle-wm-tests
|
|
miracle_config_test.cpp
|
|
tree_test.cpp
|
|
test_i3_command.cpp)
|
|
|
|
target_include_directories(miracle-wm-tests PUBLIC SYSTEM ${GTEST_INCLUDE_DIRS} ${MIRAL_INCLUDE_DIRS})
|
|
target_link_libraries(miracle-wm-tests GTest::gtest_main miracle-wm-implementation ${GTEST_LIBRARIES} ${MIRAL_LDFLAGS} PkgConfig::YAML pthread)
|
|
gtest_discover_tests(miracle-wm-tests)
|