-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[io2d] Fix link to target "Cairo::Cairo" error (#8935)
* [io2d] Fix link to target "Cairo::Cairo" error * [io2d] Remove include(vcpkg_common_functions) in portfile.cmake
- Loading branch information
Showing
3 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: io2d | ||
Version: 2019-07-11-1 | ||
Version: 2019-07-11-2 | ||
Description: a lightweight, cross platform drawing library | ||
Build-Depends: cairo (!osx), cairo[x11] (linux), graphicsmagick (!osx) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/P0267_RefImpl/P0267_RefImpl/cairo/CMakeLists.txt b/P0267_RefImpl/P0267_RefImpl/cairo/CMakeLists.txt | ||
index d0e9176..2ac638c 100644 | ||
--- a/P0267_RefImpl/P0267_RefImpl/cairo/CMakeLists.txt | ||
+++ b/P0267_RefImpl/P0267_RefImpl/cairo/CMakeLists.txt | ||
@@ -24,7 +24,9 @@ target_include_directories(io2d_cairo PUBLIC | ||
|
||
target_compile_features(io2d_cairo PUBLIC cxx_std_17) | ||
|
||
-target_link_libraries(io2d_cairo PUBLIC io2d_core Cairo::Cairo unofficial::graphicsmagick::graphicsmagick) | ||
+find_package(unofficial-cairo CONFIG REQUIRED) | ||
+ | ||
+target_link_libraries(io2d_cairo PUBLIC io2d_core unofficial::cairo::cairo unofficial::graphicsmagick::graphicsmagick) | ||
|
||
install( | ||
TARGETS io2d_cairo EXPORT io2d_targets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters