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
1aec1f59
Commit
1aec1f59
authored
Nov 13, 2014
by
Alexander Golubev
Committed by
Wayne Stambaugh
Nov 13, 2014
Browse files
Options
Browse Files
Download
Plain Diff
An ugly if condition replaced with a CACHE'd cmake variable in CMakeList.txt.
parents
174c6244
483a7b27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
CMakeLists.txt
CMakeLists.txt
+5
-10
No files found.
CMakeLists.txt
View file @
1aec1f59
...
...
@@ -269,20 +269,15 @@ if( USE_WX_GRAPHICS_CONTEXT )
endif
()
# Allow user to override the default settings for adding images to menu items. By default
# images in menu items are enabled on all platforms except OSX. This can be over ridden by
# defining -DUSE_IMAGES_IN_MENUS=ON/OFF to force the preferred behavior.
if
(
NOT DEFINED USE_IMAGES_IN_MENUS
)
if
(
NOT APPLE
)
set
(
USE_IMAGES_IN_MENUS ON
)
endif
()
# By default images in menu items are enabled on all platforms except OSX.
if
(
NOT APPLE
)
set
(
USE_IMAGES_IN_MENUS ON CACHE BOOL
"Enable images in menus"
)
else
()
if
(
USE_IMAGES_IN_MENUS
)
set
(
USE_IMAGES_IN_MENUS ON
)
endif
()
set
(
USE_IMAGES_IN_MENUS OFF CACHE BOOL
"Enable images in menus"
)
endif
()
# KIFACE_SUFFIX is the file extension used for top level program modules which
# implement the KIFACE interface. A valid suffix starts with a period '.'.
...
...
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