From c783a48bae381bd9228aeb9b435a2ace01f6bbcf Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 8 Sep 2024 14:52:57 +0200 Subject: [PATCH] Always include CMake binary dir in include path. --- profiler/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/profiler/CMakeLists.txt b/profiler/CMakeLists.txt index ff284d65..3959473a 100644 --- a/profiler/CMakeLists.txt +++ b/profiler/CMakeLists.txt @@ -98,12 +98,11 @@ set(PROFILER_FILES src/winmainArchDiscovery.cpp ) -set(INCLUDES "") +set(INCLUDES "${CMAKE_CURRENT_BINARY_DIR}") set(LIBS "") if(USE_WAYLAND) pkg_check_modules(WAYLAND REQUIRED egl wayland-egl wayland-cursor xkbcommon) - set(INCLUDES "${INCLUDES};${CMAKE_CURRENT_BINARY_DIR}") set(LIBS "${LIBS};${WAYLAND_LIBRARIES}") set(PROFILER_FILES ${PROFILER_FILES} src/BackendWayland.cpp