aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-01-20 01:23:32 +0000
committerbloodstalker <thabogre@gmail.com>2017-01-20 01:23:32 +0000
commita5388a8441eea038adb03dccec0a84e9e1f541f9 (patch)
tree5083fa0e732b1a951d7edf14478d290fac7f6916 /makefile
parentupdated 1/20/2017 (diff)
downloadmutator-a5388a8441eea038adb03dccec0a84e9e1f541f9.tar.gz
mutator-a5388a8441eea038adb03dccec0a84e9e1f541f9.zip
started working on a windows build
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile
index a49ba71..13d4204 100644
--- a/makefile
+++ b/makefile
@@ -40,6 +40,13 @@ EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell
EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o
endif
+ifeq ($(BUILD_MODE), WIN_BUILD)
+$(error This build mode is not yet implemented.)
+EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\
+ -std=c++11 -stdlib=libstdc++ -UNDEBUG -fexceptions
+EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o
+endif
+
ifeq ($(BUILD_MODE), COV_NO_CLANG_1Z)
ifeq ($(CXX), g++)
$(error This build mode is only useable with clang++.)