Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
c1429f28
Commit
c1429f28
authored
Nov 15, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allowing pre-setting CMAKE_CXX_FLAGS on first CMake invocation
parent
9f9f2ed3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
CMakeLists.txt
CMakeLists.txt
+4
-2
No files found.
CMakeLists.txt
View file @
c1429f28
...
@@ -6,6 +6,8 @@ cmake_minimum_required( VERSION 2.8.4 FATAL_ERROR )
...
@@ -6,6 +6,8 @@ cmake_minimum_required( VERSION 2.8.4 FATAL_ERROR )
# Path to local CMake modules.
# Path to local CMake modules.
set
(
CMAKE_MODULE_PATH
${
PROJECT_SOURCE_DIR
}
/CMakeModules
)
set
(
CMAKE_MODULE_PATH
${
PROJECT_SOURCE_DIR
}
/CMakeModules
)
message
(
STATUS
"CMAKE_CXX_FLAGS_DEBUG:
${
CMAKE_CXX_FLAGS_DEBUG
}
"
)
#
#
# KiCad build options should be added below.
# KiCad build options should be added below.
#
#
...
@@ -88,8 +90,8 @@ if( CMAKE_COMPILER_IS_GNUCXX )
...
@@ -88,8 +90,8 @@ if( CMAKE_COMPILER_IS_GNUCXX )
# Establish -Wall early, so specialized relaxations of this may come
# Establish -Wall early, so specialized relaxations of this may come
# subsequently on the command line, such as in pcbnew/github/CMakeLists.txt
# subsequently on the command line, such as in pcbnew/github/CMakeLists.txt
set
(
CMAKE_C_FLAGS
"-Wall"
)
set
(
CMAKE_C_FLAGS
"-Wall
${
CMAKE_C_FLAGS
}
"
)
set
(
CMAKE_CXX_FLAGS
"-Wall"
)
set
(
CMAKE_CXX_FLAGS
"-Wall
${
CMAKE_CXX_FLAGS
}
"
)
# The optimization level is -O1 instead of the usual -O2 level because
# The optimization level is -O1 instead of the usual -O2 level because
# boost::polygon has a function (inflate polygon) broken by the -O2 level
# boost::polygon has a function (inflate polygon) broken by the -O2 level
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment