-
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.
* chore: Improve CI build * chore: Improve CI build, fix make instruction * chore: Remove build.zip * chore: Remove build.zip * chore: Add run id to build artifact
- Loading branch information
Showing
3 changed files
with
29 additions
and
3 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
# Build artifacts | ||
bin/ | ||
build/ | ||
build* | ||
|
||
# Dependency files | ||
vendor/ | ||
|
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,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.20) | ||
cmake_minimum_required(VERSION 3.10) | ||
project(cism) | ||
|
||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
|
@@ -17,6 +17,8 @@ set(CPACK_DEBIAN_PACKAGE_SECTION "devel") | |
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional") | ||
include(CPack) | ||
|
||
option(ENABLE_COVERAGE "Set building for coverage, all optimizations will be disabled" OFF) | ||
|
||
set(CMAKE_CXX_STANDARD 20) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
|