-
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.
* Extend targets to support file sets * Move core library to header file sets * Move application library to header file sets * Move gfx platform library to header file sets * Move gfx api libraries to header file sets * Add local install folder to ignored folders * Remove unused files and make cpu visible * Ensure cmake helpers support interface targets fully * Defer executable creation to standardised target * Ensure morpheus config is exported * Specify the package info for Conan * Ensure install is relocatable * Correct export sources and remove cmake install files * Package metal and direct x targets for Conan * Update newly added files * Clear up * Ensure exported interface target * Further libraries requiring exporting * Clean up old target * Seperate build and install interface for gfx dependne ies
- Loading branch information
Showing
53 changed files
with
375 additions
and
330 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
.vscode | ||
.venv | ||
[Bb]uild* | ||
Install* | ||
cmake-build-debug | ||
env/* | ||
[Oo]ut | ||
|
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 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 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
8 changes: 5 additions & 3 deletions
8
libraries/application/src/morpheus/application/CMakeLists.txt
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
6 changes: 4 additions & 2 deletions
6
libraries/application/src/morpheus/application/po/CMakeLists.txt
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 |
---|---|---|
|
@@ -2,5 +2,7 @@ add_subdirectory(std) | |
|
||
target_sources(MorpheusApplication | ||
PUBLIC | ||
enums.hpp | ||
FILE_SET HEADERS | ||
FILES | ||
enums.hpp | ||
) |
6 changes: 4 additions & 2 deletions
6
libraries/application/src/morpheus/application/po/adapters/boost/CMakeLists.txt
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,5 +1,7 @@ | ||
target_sources(MorpheusApplication | ||
PUBLIC | ||
asio.hpp | ||
log.hpp | ||
FILE_SET HEADERS | ||
FILES | ||
asio.hpp | ||
log.hpp | ||
) |
8 changes: 5 additions & 3 deletions
8
libraries/application/src/morpheus/application/po/adapters/std/CMakeLists.txt
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 @@ | ||
target_sources(MorpheusApplication | ||
PUBLIC | ||
chrono.hpp | ||
filesystem.hpp | ||
optional.hpp | ||
FILE_SET HEADERS | ||
FILES | ||
chrono.hpp | ||
filesystem.hpp | ||
optional.hpp | ||
) |
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
Oops, something went wrong.