From 3160b0cd3205a99b3ef7e783877f70ff7a256ea7 Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Thu, 23 Jul 2020 09:46:47 +0300 Subject: [PATCH] Fix bad precomp paths --- components/structures/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/structures/CMakeLists.txt b/components/structures/CMakeLists.txt index 29fafd1ac..bb8524874 100644 --- a/components/structures/CMakeLists.txt +++ b/components/structures/CMakeLists.txt @@ -7,9 +7,9 @@ target_include_directories(ftldata PUBLIC target_link_libraries(ftldata ftlcommon Eigen3::Eigen ftlcodecs) target_precompile_headers(ftldata - PRIVATE include/ftl/utility/msgpack.hpp - PRIVATE include/ftl/utility/msgpack_optional.hpp - PRIVATE include/ftl/cuda_common.hpp + PRIVATE ../common/cpp/include/ftl/utility/msgpack.hpp + PRIVATE ../common/cpp/include/ftl/utility/msgpack_optional.hpp + PRIVATE ../common/cpp/include/ftl/cuda_common.hpp PRIVATE include/ftl/data/new_frame.hpp PRIVATE include/ftl/data/new_frameset.hpp ) -- GitLab