Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
78196aaa
Commit
78196aaa
authored
Apr 28, 2016
by
Jan Möbius
Browse files
Typo
parent
909aa2b0
Pipeline
#1510
passed with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
78196aaa
...
...
@@ -7,6 +7,11 @@ if("${PROJECT_NAME}" STREQUAL "")
project
(
OpenMesh
)
endif
()
if
(
WIN32
)
# This is the base directory for windows library search used in the finders we ship.
set
(
CMAKE_WINDOWS_LIBS_DIR
"c:/libs"
CACHE STRING
"Default Library search dir on windows."
)
endif
()
if
(
NOT WIN32 AND NOT CMAKE_BUILD_TYPE
)
message
(
STATUS
"No build type selected, default to Release"
)
set
(
CMAKE_BUILD_TYPE
"Release"
CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel."
FORCE
)
...
...
cmake/FindGLUT.cmake
View file @
78196aaa
...
...
@@ -46,7 +46,7 @@ IF (WIN32)
FIND_PATH
(
GLUT_INCLUDE_DIR NAMES GL/glut.h
PATHS
${
GLUT_ROOT_PATH
}
/include
"
${
CMAKE_WINDOWS_LIBS_DIR
}
/glut-3.7/include"
"
${
VS_SEARCH_PATH
}
/freeglut-3.0.0/include"
)
"
${
VS_SEARCH_PATH
}
/freeglut-3.0.0/include"
"
${
VS_SEARCH_PATH
}
/freeglut-2.8.1/include"
)
FIND_LIBRARY
(
GLUT_glut_LIBRARY NAMES glut32 glut freeglut
...
...
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