Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
fa79b3f4
There was an error fetching the commit references. Please try again later.
Commit
fa79b3f4
authored
10 years ago
by
James Rowe
Browse files
Options
Downloads
Patches
Plain Diff
Small changes to the CMake file to make windows build easier
parent
c4767f3b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+13
-7
13 additions, 7 deletions
CMakeLists.txt
with
13 additions
and
7 deletions
CMakeLists.txt
+
13
−
7
View file @
fa79b3f4
...
...
@@ -18,19 +18,25 @@ else()
# changes intact, so we'll just clobber everything and say sorry.
message
(
STATUS
"Cache compiler flags ignored, please edit CMakeLists.txt to change the flags."
)
# /MP - Multi-threaded compilation
# /MD - Multi-threaded runtime
# /Ox - Full optimization
# /Oy- - Don't omit frame pointer
# /GR- - Disable RTTI
# /GS- - No stack buffer overflow checks
# /EHsc - C++-only exception handling semantics
set
(
optimization_flags
"/MP
/MD
/Ox /Oy- /GR- /GS- /EHsc"
)
set
(
optimization_flags
"/MP /Ox /Oy- /GR- /GS- /EHsc"
)
# /Zi - Output debugging information
# /Zo - enahnced debug info for optimized builds
set
(
CMAKE_C_FLAGS_RELEASE
"
${
optimization_flags
}
/Zi"
CACHE STRING
""
FORCE
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"
${
optimization_flags
}
/Zi"
CACHE STRING
""
FORCE
)
set
(
CMAKE_C_FLAGS_RELWITHDEBINFO
"
${
optimization_flags
}
/Zi /Zo"
CACHE STRING
""
FORCE
)
set
(
CMAKE_CXX_FLAGS_RELWITHDEBINFO
"
${
optimization_flags
}
/Zi /Zo"
CACHE STRING
""
FORCE
)
# /MDd - Multi-threaded Debug Runtime DLL
set
(
CMAKE_C_FLAGS_DEBUG
"
${
optimization_flags
}
/MDd /Zi /Zo"
CACHE STRING
""
FORCE
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"
${
optimization_flags
}
/MDd /Zi /Zo"
CACHE STRING
""
FORCE
)
# /MD - Multi-threaded runtime DLL
set
(
CMAKE_C_FLAGS_RELEASE
"
${
optimization_flags
}
/MD /Zi"
CACHE STRING
""
FORCE
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"
${
optimization_flags
}
/MD /Zi"
CACHE STRING
""
FORCE
)
set
(
CMAKE_C_FLAGS_RELWITHDEBINFO
"
${
optimization_flags
}
/MD /Zi /Zo"
CACHE STRING
""
FORCE
)
set
(
CMAKE_CXX_FLAGS_RELWITHDEBINFO
"
${
optimization_flags
}
/MD /Zi /Zo"
CACHE STRING
""
FORCE
)
set
(
CMAKE_EXE_LINKER_FLAGS_DEBUG
"/DEBUG"
CACHE STRING
""
FORCE
)
set
(
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
"/DEBUG"
CACHE STRING
""
FORCE
)
endif
()
add_definitions
(
-DSINGLETHREADED
)
...
...
@@ -100,7 +106,7 @@ if (ENABLE_GLFW)
set
(
GLFW_PREFIX
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/externals/glfw-3.0.4.bin"
)
set
(
GLFW_INCLUDE_DIRS
"
${
GLFW_PREFIX
}
/include"
CACHE PATH
"Path to GLFW3 headers"
)
set
(
GLFW_LIBRARY_DIRS
"
${
GLFW_PREFIX
}
/lib-
${
TMP_TOOLSET
}
"
CACHE PATH
"Path to GLFW3 libraries"
)
# Clean up after ourselves
unset
(
TMP_TOOLSET
)
unset
(
TMP_ARCH
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment