-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cmake): add support for precompiled headers, module definitions
- Loading branch information
1 parent
3fe5e20
commit e7dac87
Showing
16 changed files
with
51 additions
and
27 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
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,3 +1,4 @@ | ||
add_pretty_parser(vicepp C SOURCES | ||
add_pretty_parser(vicepp C | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/lang/c/include/viceppc/vicepp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/vicepp.cpp") |
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,3 +1,4 @@ | ||
add_pretty_parser(bsppp DEPS vpkpp SOURCES | ||
add_pretty_parser(bsppp | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/include/bsppp/bsppp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/bsppp.cpp") |
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,3 +1,4 @@ | ||
add_pretty_parser(fgdpp SOURCES | ||
add_pretty_parser(fgdpp | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/include/fgdpp/fgdpp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/fgdpp.cpp") |
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,3 +1,4 @@ | ||
add_pretty_parser(kvpp SOURCES | ||
add_pretty_parser(kvpp | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/include/kvpp/kvpp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/kvpp.cpp") |
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,3 +1,5 @@ | ||
add_pretty_parser(steampp DEPS kvpp SOURCES | ||
add_pretty_parser(steampp | ||
DEPS kvpp | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/include/steampp/steampp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/steampp.cpp") |
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,3 +1,5 @@ | ||
add_pretty_parser(vicepp DEPS sourcepp_ice SOURCES | ||
add_pretty_parser(vicepp | ||
DEPS sourcepp_ice | ||
SOURCES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/include/vicepp/vicepp.h" | ||
"${CMAKE_CURRENT_LIST_DIR}/vicepp.cpp") |
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.