forked from stuntrally/stuntrally3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4073649
commit 2f9a5a7
Showing
10 changed files
with
56 additions
and
150 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
if (NOT TARGET boost::boost) | ||
find_package(Boost REQUIRED COMPONENTS system thread filesystem) | ||
message(STATUS "Adding boost::boost target") | ||
add_library(boost::boost INTERFACE IMPORTED) | ||
set_target_properties(boost::boost PROPERTIES | ||
INTERFACE_LINK_LIBRARIES "${Boost_LIBRARIES}" | ||
INTERFACE_INCLUDE_DIRECTORIES "${Boost_INCLUDE_DIRS}" | ||
) | ||
endif () | ||
|
||
if (NOT TARGET Bullet::Bullet) | ||
message(STATUS "Adding Bullet::Bullet target") | ||
add_library(Bullet::Bullet INTERFACE IMPORTED) | ||
set_target_properties(Bullet::Bullet PROPERTIES | ||
INTERFACE_LINK_LIBRARIES "${BULLET_LIBRARIES};BulletWorldImporter;BulletXmlWorldImporter" | ||
INTERFACE_INCLUDE_DIRECTORIES "${BULLET_ROOT_DIR}/${BULLET_INCLUDE_DIR}" | ||
) | ||
endif () | ||
|
||
if (NOT TARGET rapidjson) | ||
message(STATUS "Adding rapidjson target") | ||
add_library(rapidjson INTERFACE IMPORTED) | ||
set_target_properties(rapidjson PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${RAPIDJSON_INCLUDE_DIRS}" | ||
) | ||
endif () |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 @@ | ||
find_with_pkg(enet "enet::enet" "libenet >= 1.3") |
This file was deleted.
Oops, something went wrong.
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