-
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.
build: Update copier-cpp template to v0.3.4a2
- Loading branch information
1 parent
c6785e8
commit ca6cb8e
Showing
8 changed files
with
55 additions
and
54 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Changes here will be overwritten by Copier | ||
_commit: v0.3.4a1 | ||
_commit: v0.3.4a2 | ||
_src_path: gh:deeplex/copier-cpp | ||
email: [email protected] | ||
full_name: Henrik Steffen Gaßmann | ||
|
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,14 @@ | ||
set(CMAKE_SYSTEM_PROCESSOR arm64) | ||
|
||
execute_process(COMMAND brew --prefix llvm@16 OUTPUT_VARIABLE BREW_LLVM_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
|
||
set(CMAKE_C_COMPILER "${BREW_LLVM_PATH}/bin/clang") | ||
set(CMAKE_CXX_COMPILER "${BREW_LLVM_PATH}/bin/clang++") | ||
set(CMAKE_OSX_DEPLOYMENT_TARGET 14.0 CACHE STRING "OSX deployment target") | ||
set(CMAKE_OSX_ARCHITECTURES arm64 CACHE STRING "OSX target architectures") | ||
set(CMAKE_OSX_SYSROOT /Applications/Xcode_15.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk CACHE FILEPATH "The macos SDK to use") | ||
|
||
set(CMAKE_C_STANDARD 17 CACHE STRING "C standard") | ||
set(CMAKE_CXX_STANDARD 20 CACHE STRING "C++ standard") | ||
|
||
set(CMAKE_CXX_FLAGS_INIT "-fsized-deallocation") |
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
6 changes: 3 additions & 3 deletions
6
tools/triplets/x64-osx-clang-16-brew.cmake → .../triplets/arm64-macos-clang-16-brew.cmake
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