X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=CMakeLists.txt;h=4ee8d204007464003038419c351b6bd3f6da6e02;hb=7b9ffe4a6db2e59c18510aac4ba30902653e13eb;hp=940326e732d3fcf07081b9cdf38654a3e9490cfb;hpb=6307b9440a3b8814bae8a29611fab5a57156576b;p=oota-llvm.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 940326e732d..4ee8d204007 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,8 @@ project(LLVM) cmake_minimum_required(VERSION 2.6.1) set(PACKAGE_NAME llvm) -set(PACKAGE_VERSION svn) +set(PACKAGE_VERSION 2.6svn) +set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) @@ -104,6 +105,17 @@ endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config ) include(config-ix) +option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF) + +if( LLVM_ENABLE_PIC ) + if( SUPPORTS_FPIC_FLAG ) + message(STATUS "Building with -fPIC") + add_definitions(-fPIC) + else( SUPPORTS_FPIC_FLAG ) + message(STATUS "Warning: -fPIC not supported.") + endif() +endif() + set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} ) set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) @@ -191,6 +203,7 @@ add_subdirectory(lib/AsmParser) add_subdirectory(lib/Debugger) add_subdirectory(lib/Archive) +add_subdirectory(projects) add_subdirectory(tools) add_subdirectory(examples)