mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-28 05:14:33 +00:00
Issue #47 - Add C++11 flags
This commit is contained in:
parent
05869b0c00
commit
35057f6270
@ -8,7 +8,7 @@ compiler:
|
|||||||
before_install:
|
before_install:
|
||||||
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq ; fi
|
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq ; fi
|
||||||
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi
|
||||||
script: CXXFLAGS='-std=c++0x' cmake . && make
|
script: cmake . && make
|
||||||
matrix:
|
matrix:
|
||||||
exclude:
|
exclude:
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
|
@ -2,5 +2,9 @@ cmake_minimum_required (VERSION 2.8)
|
|||||||
|
|
||||||
project (pe-parse)
|
project (pe-parse)
|
||||||
|
|
||||||
|
if(UNIX)
|
||||||
|
set(CMAKE_CXX_FLAGS "-std=c++0x")
|
||||||
|
endif(UNIX)
|
||||||
|
|
||||||
add_subdirectory(parser-library)
|
add_subdirectory(parser-library)
|
||||||
add_subdirectory(dump-prog)
|
add_subdirectory(dump-prog)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user