Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
a8245ec5
Commit
a8245ec5
authored
May 25, 2011
by
Sebastian Eichelbaum
Browse files
[FIX] - OW_LINK_SHADERS disabled for Windows.
parent
10413591
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/CMakeLists.txt
src/CMakeLists.txt
+6
-1
No files found.
src/CMakeLists.txt
View file @
a8245ec5
...
...
@@ -152,7 +152,12 @@ ADD_DEFINITIONS( -DEIGEN_DONT_VECTORIZE -DEIGEN_DONT_ALIGN -DEIGEN_DISABLE_UNALI
# other options
OPTION
(
OW_HANDLE_SHADERS
"This ensures that shaders are available in build directory after build."
ON
)
OPTION
(
OW_LINK_SHADERS
"If turned on, shaders do not get copied. They get linked. This is a nice option for developers."
OFF
)
# sorry, linking not available properly on windows, Cygwin supports this but we do not want special rules for thousands of environments.
# ==> keep it clean
IF
(
NOT CMAKE_HOST_SYSTEM MATCHES
"Windows"
)
OPTION
(
OW_LINK_SHADERS
"If turned on, shaders do not get copied. They get linked. This is a nice option for developers."
OFF
)
ENDIF
()
# ---------------------------------------------------------------------------------------------------------------------------------------------------
#
...
...
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