From 7c5bf9473e6d62490006eefb1e5afd510db9b79e Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 11:11:27 +0200 Subject: [PATCH] CMakeLists: fix include paths --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 025fc72..e3e3b60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,6 +9,7 @@ project(BeamMP-Server HOMEPAGE_URL https://beammp.com LANGUAGES CXX C) +include_directories("include/sentry-native/include") add_subdirectory("include/sentry-native") message(STATUS "Setting compiler flags") @@ -83,7 +84,7 @@ target_include_directories(BeamMP-Server PUBLIC ${CURL_INCLUDE_DIRS} "socket.io-client-cpp/src" "include/tomlplusplus" - "include/sentry-native" + "include/sentry-native/include" "include/curl/include") message(STATUS "Looking for SSL")