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.
🚀 Added install and package target for installing the game on Windows
- Loading branch information
1 parent
8b2aa1f
commit ec05da3
Showing
9 changed files
with
783 additions
and
173 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
include(BundleUtilities) | ||
include(${BIN_DIR}/cmake/ConanBinDirs.cmake) | ||
|
||
if (APPLE) | ||
set(PLUGIN_EXTENSION "dylib") | ||
elseif (WIN32) | ||
set(PLUGIN_EXTENSION "dll") | ||
else() | ||
set(PLUGIN_EXTENSION "so") | ||
endif() | ||
|
||
file(GLOB PLUGINS "${LIB_DIR}/Plugin_*.${PLUGIN_EXTENSION}") | ||
file(GLOB RENDERSYSTEMS "${LIB_DIR}/RenderSystem_*.${PLUGIN_EXTENSION}") | ||
|
||
set(EXTRA_LIBS ${PLUGINS} ${RENDERSYSTEMS}) | ||
fixup_bundle("${EXECUTABLE}" "${EXTRA_LIBS}" "${CONAN_BIN_DIRS}") |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.