Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Thompson
SMTK
Commits
7f8f81d4
Commit
7f8f81d4
authored
Dec 10, 2015
by
Ben Boeckel
Browse files
cmake: don't set output paths in the cache
These aren't really meant to be used as cache entries. Local variables are fine.
parent
349aa9f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
7f8f81d4
...
...
@@ -62,22 +62,11 @@ include(FindHashFunctor)
# Set the directory where the binaries will be stored
set
(
EXECUTABLE_OUTPUT_PATH
${
PROJECT_BINARY_DIR
}
/bin
CACHE PATH
"Directory where all executable will be stored"
)
${
PROJECT_BINARY_DIR
}
/bin
)
# Set the directory where the libraries will be stored
set
(
LIBRARY_OUTPUT_PATH
${
PROJECT_BINARY_DIR
}
/lib
CACHE PATH
"Directory where all the libraries will be stored"
)
mark_as_advanced
(
EXECUTABLE_OUTPUT_PATH
LIBRARY_OUTPUT_PATH
)
${
PROJECT_BINARY_DIR
}
/lib
)
include
(
CMakeDependentOption
)
...
...
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