forked from dev-cafe/cmake-cookbook
-
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.
Extend menu.yml to accept configurations (argument to --config)
This is needed for Visual Studio, which can generate debug and release builds at once. The behavior can only be controlled passing --config to CMake when building it would seem.
- Loading branch information
Showing
10 changed files
with
59 additions
and
25 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[style] | ||
COLUMN_LIMIT = 80 | ||
INDENT_WIDTH = 4 | ||
USE_TABS = False |
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,7 @@ | ||
appveyor: | ||
configurations: | ||
- 'Release' | ||
|
||
drone: | ||
definitions: | ||
- CMAKE_CXX_COMPILER: 'pgc++' |
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,4 +4,3 @@ appveyor: | |
definitions: | ||
- CMAKE_BUILD_TYPE: 'Release' | ||
- CMAKE_CONFIGURATION_TYPES: 'Release' | ||
- MS_WIN64: 'ON' |
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 |
---|---|---|
|
@@ -4,4 +4,3 @@ appveyor: | |
definitions: | ||
- CMAKE_BUILD_TYPE: 'Release' | ||
- CMAKE_CONFIGURATION_TYPES: 'Release' | ||
- MS_WIN64: 'ON' |
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,4 @@ | ||
appveyor: | ||
failing_generators: | ||
- 'MSYS Makefiles' | ||
- 'Ninja' | ||
- 'Visual Studio 14 2015' | ||
- 'Visual Studio 15 2017' |
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,4 @@ | ||
appveyor: | ||
failing_generators: | ||
- 'MSYS Makefiles' | ||
- 'Ninja' | ||
- 'Visual Studio 14 2015' | ||
- 'Visual Studio 15 2017' |
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