1
0
Fork 0

no ASM under Windows

This commit is contained in:
Frank Celler 2016-04-27 17:26:07 +02:00
parent 8c55d5adcd
commit 10cea5553f
1 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,11 @@ endif ()
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "deployment target for MacOSX")
project(ArangoDB CXX C ASM)
if (WIN32)
project(ArangoDB CXX C)
else ()
project(ArangoDB CXX C ASM)
endif ()
# where to find CMAKE modules
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)