Skip to content
This repository has been archived by the owner on Apr 20, 2022. It is now read-only.

Commit

Permalink
switches for mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Bloomberg committed Aug 25, 2016
1 parent d5fe519 commit 053f0fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,6 +8,7 @@ build.wake.cpp
/deps/external/

/.vs/
/.vscode/
*.vcxproj
*.vcxproj.filters
*.vcxproj.user
Expand Down
6 changes: 5 additions & 1 deletion CMakeLists.txt
Expand Up @@ -43,7 +43,11 @@ if (MINGW)
endif ()
endif ()

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
if (MINGW)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
else ()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif ()

set(TCLAP_INCLUDE_DIR "deps/tclap-1.2.1/include")
set(STB_INCLUDE_DIR "deps/stb")
Expand Down
Binary file modified dist/assets/models/sponza.wmdl
Binary file not shown.

0 comments on commit 053f0fb

Please sign in to comment.