Created
February 24, 2014 19:30
-
-
Save Fiona-J-W/9195261 to your computer and use it in GitHub Desktop.
mfc.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set cpp { | |
| compiler-opts= -Wall -Wextra -pedantic -std=c++11 | |
| } | |
| set release { | |
| compiler-opts=-O3 -mtune=native -Werror | |
| } | |
| set debug { | |
| compiler-opts=-O0 -D_GLIBCXX_DEBUG -g | |
| } | |
| set structured_root { | |
| source-dir=src | |
| build-dir=build | |
| output=makefile | |
| } | |
| set structured_src { | |
| source-dir=./ | |
| build-dir=../build/ | |
| output=makefile | |
| } | |
| set libc++ { | |
| compiler=clang++ | |
| compiler-opts=-stdlib=libc++ | |
| link=c++abi | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment