diff options
author | Josh Rahm <rahm@google.com> | 2024-02-14 15:23:47 -0700 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-02-14 15:23:47 -0700 |
commit | 46999e5c69e9e46d78f5c284a7dcc250a964274a (patch) | |
tree | 83e2cc71d8a591eb5eb38db27755bc4b0caa6130 | |
parent | 020bc92281ae584dc97aa30e1a1ad2a5373335fd (diff) | |
download | wetterhorn-46999e5c69e9e46d78f5c284a7dcc250a964274a.tar.gz wetterhorn-46999e5c69e9e46d78f5c284a7dcc250a964274a.tar.bz2 wetterhorn-46999e5c69e9e46d78f5c284a7dcc250a964274a.zip |
Add wlroots build/include directory to the include path of the harness
-rw-r--r-- | harness/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/harness/CMakeLists.txt b/harness/CMakeLists.txt index a9bad8b..80312eb 100644 --- a/harness/CMakeLists.txt +++ b/harness/CMakeLists.txt @@ -7,7 +7,8 @@ project ( set(CMAKE_VERBOSE_MAKEFILE ON) set(CMAKE_BUILD_TYPE Debug) -include_directories(include/ ../wlroots/include /usr/include/pixman-1 ${CMAKE_CURRENT_BINARY_DIR}/) +include_directories(include/ ../wlroots/include /usr/include/pixman-1 + ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../wlroots/include) add_definitions(-DWLR_USE_UNSTABLE) |