From 622468ba6dc71a75c4e062ac1bde58651dbc84cd Mon Sep 17 00:00:00 2001 From: Kevin Huck Date: Mon, 9 Mar 2020 16:21:26 -0700 Subject: [PATCH] Fixing location of perfstubs headers --- CMakeLists.txt | 2 +- src/apex/perftool_implementation.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dcef0afa..0035e327 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -682,7 +682,7 @@ find_file( if(PERFSTUBS_HEADER) message(INFO " Found perfstubs at ${PROJECT_SOURCE_DIR}/perfstubs.git") - include_directories(${PROJECT_SOURCE_DIR}) + include_directories(${PROJECT_SOURCE_DIR}/perfstubs.git) else() message(FATAL_ERROR " perfstubs not found. This should have been checked out automatically. " "Try manually check out https://github.com/khuck/perfstubs.git to ${PROJECT_SOURCE_DIR}") diff --git a/src/apex/perftool_implementation.cpp b/src/apex/perftool_implementation.cpp index 62292863..61513c8f 100644 --- a/src/apex/perftool_implementation.cpp +++ b/src/apex/perftool_implementation.cpp @@ -4,7 +4,7 @@ // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // -#include "perfstubs/perfstubs_api/tool.h" +#include "perfstubs_api/tool.h" #include #include "apex.h" #include "thread_instance.hpp"