vcpkg/ports/sol2/fix-namespace.patch

18 lines
561 B
Diff
Raw Normal View History

diff --git a/cmake/sol2-config.cmake.in b/cmake/sol2-config.cmake.in
index 0c48a99..62930db 100644
--- a/cmake/sol2-config.cmake.in
+++ b/cmake/sol2-config.cmake.in
@@ -24,9 +24,9 @@
include("${CMAKE_CURRENT_LIST_DIR}/sol2-targets.cmake")
-if (TARGET sol2)
+if (TARGET sol2::sol2)
get_target_property(SOL2_INCLUDE_DIRS
- sol2 INTERFACE_INCLUDE_DIRECTORIES)
+ sol2::sol2 INTERFACE_INCLUDE_DIRECTORIES)
set_and_check(SOL2_INCLUDE_DIRS "${SOL2_INCLUDE_DIRS}")
- set(SOL2_LIBRARIES sol2)
+ set(SOL2_LIBRARIES sol2::sol2)
endif()