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
ACGL
acgl
Commits
7bc88cfe
Commit
7bc88cfe
authored
Feb 24, 2013
by
Robert Menzel
Browse files
fixed cmake file and fixed a gcc related problem
parent
1fdf9e2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
7bc88cfe
...
...
@@ -80,8 +80,8 @@ IF(DEFINED ACGL_COMPILE_WITH_QT)
ENDIF
()
# GLM
FIND_PACKAGE
(
GLM REQUIRED
)
INCLUDE_DIRECTORIES
(
${
GLM_INCLUDE_DIR
}
)
#
FIND_PACKAGE(GLM REQUIRED)
#
INCLUDE_DIRECTORIES(${GLM_INCLUDE_DIR})
# GLEW
#IF(DEFINED ACGL_PLATFORM_DESKTOP)
...
...
src/ACGL/Utils/Log.cc
View file @
7bc88cfe
...
...
@@ -50,7 +50,7 @@ void CoutLikeStreamBuffer::mirrorToFile( const std::string &_token ) {
// loose much in case the app crashes and debugging is the main
// usecase for this function!
std
::
ofstream
file
;
file
.
open
(
mFilename
,
std
::
ios
::
app
);
file
.
open
(
mFilename
.
c_str
()
,
std
::
ios
::
app
);
file
<<
_token
;
file
.
close
();
}
...
...
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