vcpkg/ports/nodesoup/fix-cmakelists.patch
Jia Yue Hua 382746822d
[matplotplusplus,nodesoup] update to v1.2.0,add new port (#31796)
* [matplotplusplus] update to 2023-02-17

* [matplotplusplus] fix installation of matplot_opengl

* [matplotplusplus] remove the opengl patch as it merged upstream

* [matplotplusplus] try to fix filesystem for osx

* fix deps

* fix deps

* fix deps

* [matplotplusplus]: update to v1.2.0

* fix deps

* disable sanitizer

* fix opengl feature

* fix-dependencies

* [nodesoup]: add new port

* nodesoup

* fix deps

* fix nodesoup namespace

* fix deps

* fix deps

* fix

* fix

* fix deps

* fix deps

* fix deps

* fix deps

---------

Co-authored-by: Amin Yahyaabadi <aminyahyaabadi74@gmail.com>
2023-06-14 12:50:43 -07:00

29 lines
895 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index be6aa9d..26e59f3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -34,7 +34,7 @@ install(
ARCHIVE DESTINATION lib
INCLUDES
DESTINATION include
- PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/nodesoup)
+ PUBLIC_HEADER DESTINATION include)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index dbd43b9..44164c9 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -5,7 +5,9 @@ add_library(nodesoup::nodesoup ALIAS nodesoup)
target_include_directories(
nodesoup
PUBLIC $<BUILD_INTERFACE:${nodesoup_SOURCE_DIR}/include>
- PRIVATE $<BUILD_INTERFACE:${nodesoup_SOURCE_DIR}/src>)
+ $<INSTALL_INTERFACE:include>
+ PRIVATE $<BUILD_INTERFACE:${nodesoup_SOURCE_DIR}/src>
+)
target_compile_features(nodesoup PUBLIC cxx_std_14)