Fix 64 bit building

This commit is contained in:
Magnus Norddahl 2016-12-16 19:09:17 +01:00
parent a360a1963f
commit 9302b3b8bf
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ include(../../precompiled_headers.cmake)
# Path where it looks for the LLVM compiled files on Windows # Path where it looks for the LLVM compiled files on Windows
set( LLVM_PRECOMPILED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../llvm" ) set( LLVM_PRECOMPILED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../llvm" )
if( CMAKE_SIZEOF_VOID_P MATCHES "8" )
set( X64 64 )
endif()
if( NOT DRAWERGEN_LIBS ) if( NOT DRAWERGEN_LIBS )
set( DRAWERGEN_LIBS "" ) set( DRAWERGEN_LIBS "" )
endif() endif()