wxvbam prefers gnu++11 rather than c++11, should fix compiling on mingw.
This commit is contained in:
parent
33be071615
commit
542d204a9c
|
@ -1,6 +1,6 @@
|
||||||
#Do not use this file directly. Always use the top level CMakeLists.txt file
|
#Do not use this file directly. Always use the top level CMakeLists.txt file
|
||||||
# This build is much easier if we just do it here.
|
# This build is much easier if we just do it here.
|
||||||
SET( CMAKE_CXX_FLAGS -std=c++11 )
|
SET( CMAKE_CXX_FLAGS -std=gnu++11 )
|
||||||
# not yet implemented
|
# not yet implemented
|
||||||
option( ENABLE_CAIRO "Enable Cairo rendering for the wxWidgets port" ON )
|
option( ENABLE_CAIRO "Enable Cairo rendering for the wxWidgets port" ON )
|
||||||
if( WIN32 )
|
if( WIN32 )
|
||||||
|
@ -184,4 +184,4 @@ if(APPLE)
|
||||||
SET_SOURCE_FILES_PROPERTIES(wxvbam.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
SET_SOURCE_FILES_PROPERTIES(wxvbam.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
||||||
endif(APPLE)
|
endif(APPLE)
|
||||||
|
|
||||||
SET(WX_EXE_NAME wxvbam${CMAKE_EXECUTABLE_SUFFIX})
|
SET(WX_EXE_NAME wxvbam${CMAKE_EXECUTABLE_SUFFIX})
|
||||||
|
|
Loading…
Reference in New Issue