X-Git-Url: http://plrg.eecs.uci.edu/git/?p=junction.git;a=blobdiff_plain;f=CMakeLists.txt;h=c62125fc4a176749a773db7625c5409ee7ae04e7;hp=93cf495de51c5b16630515332694455c1a4bb503;hb=86ff4351e25b8f09dc80b669ad93ce28646ab9c7;hpb=e4342c8333d4f6c5451ae242781be74dfcd4455f diff --git a/CMakeLists.txt b/CMakeLists.txt index 93cf495..c62125f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,15 +1,21 @@ cmake_minimum_required(VERSION 2.8.5) +#SET(CMAKE_C_COMPILER clang-native) +#SET(CMAKE_CXX_COMPILER clang++-native) +SET(CMAKE_C_COMPILER clang-cross) +SET(CMAKE_CXX_COMPILER clang++-cross) + if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) # If this is the root project, issue a project() command so that # the Visual Studio generator will create an .sln file. - set(CMAKE_CONFIGURATION_TYPES "Debug;RelWithAsserts;RelWithDebInfo" CACHE INTERNAL "Build configs") + #set(CMAKE_CONFIGURATION_TYPES "Debug;RelWithAsserts;RelWithDebInfo" CACHE INTERNAL "Build configs") + set(CMAKE_CONFIGURATION_TYPES "RelWithDebInfo" CACHE INTERNAL "Build configs") project(Junction) set_property(GLOBAL PROPERTY USE_FOLDERS ON) set(JUNCTION_WITH_SAMPLES TRUE CACHE BOOL "Include all Junction samples in generated build system") set(JUNCTION_MAKE_INSTALLABLE TRUE) set(TURF_MAKE_INSTALLABLE TRUE) -endif() +endif() # Default values, can be overridden by user set(JUNCTION_USERCONFIG "" CACHE STRING "Optional path to additional config file (relative to root CMakeLists.txt)")