-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'github/develop' into tribits-snapshot-2…
…022-12-12 Here I resolved the conflicts in the files: * CMakeLists.txt * packages/teko/src/CMakeLists.txt by combining the changes from the two branches. It was pretty straightforward. (Just do some diffs for these files between the two branches and this merge commit).
- Loading branch information
Showing
124 changed files
with
3,385 additions
and
2,263 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Xcode generator doesn't include the compiler as the | ||
# first argument, Ninja and Makefiles do. Handle both cases. | ||
if [[ "$1" = "${CMAKE_C_COMPILER}" ]] ; then | ||
shift | ||
fi | ||
|
||
export CCACHE_CPP2=true | ||
exec "${C_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@" |
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,10 @@ | ||
#!/bin/bash | ||
|
||
# Xcode generator doesn't include the compiler as the | ||
# first argument, Ninja and Makefiles do. Handle both cases. | ||
if [[ "$1" = "${CMAKE_CXX_COMPILER}" ]] ; then | ||
shift | ||
fi | ||
|
||
export CCACHE_CPP2=true | ||
exec "${CXX_LAUNCHER}" "${CMAKE_CXX_COMPILER}" "$@" |
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
Oops, something went wrong.