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
CMake
CMake
Commits
41be7a40
Commit
41be7a40
authored
Mar 25, 2002
by
Sebastien Barre
Browse files
Add suffixes
parent
2f639d37
Changes
2
Hide whitespace changes
Inline
Side-by-side
Templates/CMakeDotNetSystemConfig.cmake
View file @
41be7a40
...
...
@@ -52,6 +52,23 @@ SET (CMAKE_SIZEOF_SHORT 2 CACHE INTERNAL "Size of short data type")
SET
(
CMAKE_SIZEOF_FLOAT 4 CACHE INTERNAL
"Size of float data type"
)
SET
(
CMAKE_SIZEOF_DOUBLE 8 CACHE INTERNAL
"Size of double data type"
)
# Suffixes
SET
(
CMAKE_EXECUTABLE_SUFFIX
".exe"
CACHE INTERNAL
"Executable suffix."
)
SET
(
CMAKE_MODULE_SUFFIX
".dll"
CACHE INTERNAL
"Module library suffix."
)
SET
(
CMAKE_OBJECT_FILE_SUFFIX
".obj"
CACHE INTERNAL
"Object file suffix."
)
SET
(
CMAKE_SHLIB_SUFFIX
".dll"
CACHE INTERNAL
"Shared library suffix."
)
SET
(
CMAKE_STATICLIB_SUFFIX
".lib"
CACHE INTERNAL
"Static library suffix."
)
# The following variables are advanced
MARK_AS_ADVANCED
(
...
...
@@ -64,6 +81,9 @@ CMAKE_USE_WIN32_THREADS
CMAKE_MAKE_PROGRAM
CMAKE_EXTRA_LINK_FLAGS
MICROSOFT_DEVENV
CMAKE_EXECUTABLE_SUFFIX
CMAKE_MODULE_SUFFIX
CMAKE_OBJECT_FILE_SUFFIX
CMAKE_SHLIB_SUFFIX
CMAKE_STATICLIB_SUFFIX
)
Templates/CMakeWindowsSystemConfig.cmake
View file @
41be7a40
...
...
@@ -42,6 +42,23 @@ SET (CMAKE_SIZEOF_SHORT 2 CACHE INTERNAL "Size of short data type")
SET
(
CMAKE_SIZEOF_FLOAT 4 CACHE INTERNAL
"Size of float data type"
)
SET
(
CMAKE_SIZEOF_DOUBLE 8 CACHE INTERNAL
"Size of double data type"
)
# Suffixes
SET
(
CMAKE_EXECUTABLE_SUFFIX
".exe"
CACHE INTERNAL
"Executable suffix."
)
SET
(
CMAKE_MODULE_SUFFIX
".dll"
CACHE INTERNAL
"Module library suffix."
)
SET
(
CMAKE_OBJECT_FILE_SUFFIX
".obj"
CACHE INTERNAL
"Object file suffix."
)
SET
(
CMAKE_SHLIB_SUFFIX
".dll"
CACHE INTERNAL
"Shared library suffix."
)
SET
(
CMAKE_STATICLIB_SUFFIX
".lib"
CACHE INTERNAL
"Static library suffix."
)
# The following variables are advanced
MARK_AS_ADVANCED
(
...
...
@@ -56,6 +73,11 @@ CMAKE_CXX_FLAGS_DEBUG
CMAKE_USE_WIN32_THREADS
CMAKE_MAKE_PROGRAM
CMAKE_EXTRA_LINK_FLAGS
CMAKE_EXECUTABLE_SUFFIX
CMAKE_MODULE_SUFFIX
CMAKE_OBJECT_FILE_SUFFIX
CMAKE_SHLIB_SUFFIX
CMAKE_STATICLIB_SUFFIX
)
Write
Preview
Supports
Markdown
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