forked from openframeworks/openFrameworks
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove CPM.cmake and add first steps towards Conan support
- Loading branch information
1 parent
b84ad46
commit 4532d60
Showing
22 changed files
with
642 additions
and
1,346 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
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
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,2 +1,4 @@ | ||
define_addon(ofxAssimpModelLoader) | ||
target_link_libraries(ofxAssimpModelLoader of::assimp) | ||
|
||
find_package(assimp CONFIG REQUIRED) | ||
target_link_libraries(ofxAssimpModelLoader assimp::assimp) |
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
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,6 +1,8 @@ | ||
define_addon(ofxOpenCv) | ||
target_link_libraries(ofxOpenCv of::opencv) | ||
|
||
if (WIN32) # We only need ippicv on Windows | ||
target_link_libraries(ofxOpenCv of::ippicv) | ||
endif() | ||
find_package(OpenCV REQUIRED) | ||
target_link_libraries(ofxOpenCv opencv::opencv) | ||
|
||
# if (WIN32) # We only need ippicv on Windows | ||
# target_link_libraries(ofxOpenCv opencv::ippicv) | ||
# endif() |
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,2 +1,4 @@ | ||
define_addon(ofxPoco) | ||
target_link_libraries(ofxPoco of::poco) | ||
|
||
find_package(Poco REQUIRED COMPONENTS Foundation Util Net XML JSON Zip) | ||
target_link_libraries(ofxPoco Poco::Foundation Poco::Util Poco::Net Poco::XML Poco::JSON Poco::Zip) |
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,2 +1,5 @@ | ||
define_addon(ofxSvg) | ||
target_link_libraries(ofxSvg of::svgtiny of::libxml2) | ||
|
||
find_package(svgtiny REQUIRED) | ||
find_package(libxml2 REQUIRED) | ||
target_link_libraries(ofxSvg svgtiny::svgtiny libxml2::libxml2) |
Oops, something went wrong.