2010-12-10 19:47:54 +00:00
|
|
|
# See www/CMake.html for instructions on how to build libcxx with CMake.
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Project
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
project(libcxx CXX C)
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
|
|
|
set(PACKAGE_NAME libcxx)
|
|
|
|
set(PACKAGE_VERSION trunk-svn)
|
|
|
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
|
|
|
set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
|
|
|
|
|
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
|
2013-09-30 09:10:01 +00:00
|
|
|
${CMAKE_MODULE_PATH}
|
2010-12-10 19:47:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Require out of source build.
|
|
|
|
include(MacroEnsureOutOfSourceBuild)
|
|
|
|
MACRO_ENSURE_OUT_OF_SOURCE_BUILD(
|
|
|
|
"${PROJECT_NAME} requires an out of source build. Please create a separate
|
|
|
|
build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there."
|
|
|
|
)
|
|
|
|
|
2013-10-03 21:58:25 +00:00
|
|
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
2014-12-29 12:15:47 +00:00
|
|
|
set(LIBCXX_LIBDIR_SUFFIX "" CACHE STRING
|
|
|
|
"Define suffix of library directory name (32/64)")
|
|
|
|
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
|
|
|
|
2013-10-03 21:58:25 +00:00
|
|
|
set(LIBCXX_BUILT_STANDALONE 1)
|
2014-12-29 12:15:47 +00:00
|
|
|
else()
|
|
|
|
set(LIBCXX_LIBDIR_SUFFIX ${LLVM_LIBDIR_SUFFIX})
|
2013-10-03 21:58:25 +00:00
|
|
|
endif()
|
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
# Setup CMake Options
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
# Define options.
|
|
|
|
option(LIBCXX_ENABLE_EXCEPTIONS "Use exceptions." ON)
|
|
|
|
option(LIBCXX_ENABLE_RTTI "Use run time type information." ON)
|
|
|
|
option(LIBCXX_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON)
|
|
|
|
option(LIBCXX_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
|
|
|
option(LIBCXX_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
2014-08-16 01:35:36 +00:00
|
|
|
option(LIBCXX_ENABLE_CXX1Y "Enable -std=c++1y and use of c++1y language features if the compiler supports it." OFF)
|
2010-12-10 19:47:54 +00:00
|
|
|
option(LIBCXX_ENABLE_SHARED "Build libc++ as a shared library." ON)
|
2014-12-06 21:02:58 +00:00
|
|
|
option(LIBCXX_ENABLE_THREADS "Build libc++ with support for threads." ON)
|
2014-12-12 03:12:18 +00:00
|
|
|
option(LIBCXX_BUILD_32_BITS "Build 32 bit libc++" OFF)
|
2014-12-06 21:02:58 +00:00
|
|
|
option(LIBCXX_ENABLE_MONOTONIC_CLOCK
|
|
|
|
"Build libc++ with support for a monotonic clock.
|
|
|
|
This option may only be used when LIBCXX_ENABLE_THREADS=OFF." ON)
|
2014-12-12 22:52:58 +00:00
|
|
|
option(LIBCXX_INSTALL_HEADERS "Install the libc++ headers." ON)
|
2013-09-02 07:28:05 +00:00
|
|
|
option(LIBCXX_INSTALL_SUPPORT_HEADERS "Install libc++ support headers." ON)
|
2015-01-16 00:55:15 +00:00
|
|
|
set(LIBCXX_SYSROOT "" CACHE STRING "Use alternate sysroot.")
|
|
|
|
set(LIBCXX_GCC_TOOLCHAIN "" CACHE STRING "Use alternate GCC toolchain.")
|
2014-08-18 05:03:46 +00:00
|
|
|
if (LIBCXX_BUILT_STANDALONE)
|
|
|
|
set(LLVM_USE_SANITIZER "" CACHE STRING
|
|
|
|
"Define the sanitizer used to build the library and tests")
|
|
|
|
endif()
|
2010-12-10 19:47:54 +00:00
|
|
|
|
2013-10-06 22:13:19 +00:00
|
|
|
set(CXXABIS none libcxxabi libcxxrt libstdc++ libsupc++)
|
2014-08-08 06:53:30 +00:00
|
|
|
if (NOT LIBCXX_CXX_ABI)
|
|
|
|
if (NOT DEFINED LIBCXX_BUILT_STANDALONE AND
|
|
|
|
IS_DIRECTORY "${CMAKE_SOURCE_DIR}/projects/libcxxabi")
|
|
|
|
set(LIBCXX_CXX_ABI_LIBNAME "libcxxabi")
|
2014-07-26 23:08:33 +00:00
|
|
|
set(LIBCXX_LIBCXXABI_INCLUDE_PATHS "${CMAKE_SOURCE_DIR}/projects/libcxxabi/include")
|
|
|
|
set(LIBCXX_CXX_ABI_INTREE 1)
|
|
|
|
else ()
|
2014-08-08 06:53:30 +00:00
|
|
|
set(LIBCXX_CXX_ABI_LIBNAME "none")
|
2014-07-26 23:08:33 +00:00
|
|
|
endif ()
|
2014-08-08 06:53:30 +00:00
|
|
|
else ()
|
|
|
|
set(LIBCXX_CXX_ABI_LIBNAME "${LIBCXX_CXX_ABI}")
|
|
|
|
endif ()
|
2012-11-30 21:02:29 +00:00
|
|
|
set(LIBCXX_CXX_ABI "${LIBCXX_CXX_ABI}" CACHE STRING
|
|
|
|
"Specify C++ ABI library to use." FORCE)
|
2013-08-19 21:42:07 +00:00
|
|
|
set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
|
2012-11-30 21:02:29 +00:00
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
# Configure System
|
|
|
|
#===============================================================================
|
|
|
|
|
2014-12-20 03:16:55 +00:00
|
|
|
set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
|
|
|
|
set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
2014-12-29 12:15:47 +00:00
|
|
|
set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
2014-12-20 03:16:55 +00:00
|
|
|
|
2014-11-15 06:26:30 +00:00
|
|
|
# Declare libc++ configuration variables.
|
|
|
|
# They are intended for use as follows:
|
|
|
|
# LIBCXX_CXX_FLAGS: General flags for both the compiler and linker.
|
|
|
|
# LIBCXX_COMPILE_FLAGS: Compile only flags.
|
|
|
|
# LIBCXX_LINK_FLAGS: Linker only flags.
|
|
|
|
set(LIBCXX_CXX_FLAGS "")
|
|
|
|
set(LIBCXX_COMPILE_FLAGS "")
|
|
|
|
set(LIBCXX_LINK_FLAGS "")
|
|
|
|
|
2014-11-15 17:25:23 +00:00
|
|
|
# Configure compiler.
|
|
|
|
include(config-ix)
|
|
|
|
# Configure ABI library
|
|
|
|
include(HandleLibCXXABI)
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Compiler Flags
|
|
|
|
#===============================================================================
|
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
# Get required flags.
|
|
|
|
# On all systems the system c++ standard library headers need to be excluded.
|
|
|
|
if (MSVC)
|
|
|
|
# MSVC only has -X, which disables all default includes; including the crt.
|
|
|
|
# Thus, we do nothing and hope we don't accidentally include any of the C++
|
|
|
|
# headers.
|
|
|
|
else()
|
|
|
|
if (LIBCXX_HAS_NOSTDINCXX_FLAG)
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -nostdinc++)
|
2014-06-24 20:32:11 +00:00
|
|
|
string(REPLACE "-stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
2014-11-15 06:26:30 +00:00
|
|
|
string(REPLACE "-stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
2014-08-16 01:35:36 +00:00
|
|
|
# If c++1y has been enabled then attempt to use it. Fail if it is no supported
|
|
|
|
# by the compiler. Otherwise choose c++11 and ensure the compiler supports it.
|
|
|
|
if (LIBCXX_ENABLE_CXX1Y)
|
|
|
|
if (LIBCXX_HAS_STDCXX1Y_FLAG)
|
|
|
|
set(LIBCXX_STD_VERSION c++1y)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "c++1y was enabled but the compiler does not support it.")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
if (LIBCXX_HAS_STDCXX11_FLAG)
|
|
|
|
set(LIBCXX_STD_VERSION c++11)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "c++11 is required by libc++ but is not supported by the compiler")
|
|
|
|
endif()
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
2014-08-16 01:35:36 +00:00
|
|
|
# LIBCXX_STD_VERSION should always be set at this point.
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-std=${LIBCXX_STD_VERSION}")
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
macro(append_if list condition var)
|
|
|
|
if (${condition})
|
|
|
|
list(APPEND ${list} ${var})
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
# Get warning flags
|
2013-10-05 00:07:35 +00:00
|
|
|
if (NOT MSVC)
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WALL_FLAG -Wall)
|
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -Werror=return-type)
|
2013-10-05 00:07:35 +00:00
|
|
|
endif()
|
2013-10-21 15:56:35 +00:00
|
|
|
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_W_FLAG -W)
|
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WNO_UNUSED_PARAMETER_FLAG -Wno-unused-parameter)
|
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WWRITE_STRINGS_FLAG -Wwrite-strings)
|
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WNO_LONG_LONG_FLAG -Wno-long-long)
|
2010-12-10 19:47:54 +00:00
|
|
|
if (LIBCXX_ENABLE_WERROR)
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WERROR_FLAG -Werror)
|
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WX_FLAG -WX)
|
2013-10-02 07:44:19 +00:00
|
|
|
else()
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_WNO_ERROR_FLAG -Wno-error)
|
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_NO_WX_FLAG -WX-)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
if (LIBCXX_ENABLE_PEDANTIC)
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_COMPILE_FLAGS LIBCXX_HAS_PEDANTIC_FLAG -pedantic)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Get feature flags.
|
|
|
|
# Exceptions
|
|
|
|
if (LIBCXX_ENABLE_EXCEPTIONS)
|
|
|
|
# Catches C++ exceptions only and tells the compiler to assume that extern C
|
|
|
|
# functions never throw a C++ exception.
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_EHSC_FLAG -EHsc)
|
2010-12-10 19:47:54 +00:00
|
|
|
else()
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS -D_LIBCPP_NO_EXCEPTIONS)
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_NO_EHS_FLAG -EHs-)
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_NO_EHA_FLAG -EHa-)
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
# RTTI
|
|
|
|
if (NOT LIBCXX_ENABLE_RTTI)
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS -D_LIBCPP_NO_RTTI)
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_NO_GR_FLAG -GR-)
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_FNO_RTTI_FLAG -fno-rtti)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
# Assert
|
2012-08-05 17:37:39 +00:00
|
|
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
|
|
|
if (LIBCXX_ENABLE_ASSERTIONS)
|
2010-12-10 19:47:54 +00:00
|
|
|
# MSVC doesn't like _DEBUG on release builds. See PR 4379.
|
|
|
|
if (NOT MSVC)
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -D_DEBUG)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
# On Release builds cmake automatically defines NDEBUG, so we
|
|
|
|
# explicitly undefine it:
|
|
|
|
if (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -UNDEBUG)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -DNDEBUG)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2013-02-25 15:50:36 +00:00
|
|
|
# Static library
|
|
|
|
if (NOT LIBCXX_ENABLE_SHARED)
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_COMPILE_FLAGS -D_LIBCPP_BUILD_STATIC)
|
2013-02-25 15:50:36 +00:00
|
|
|
endif()
|
2010-12-10 19:47:54 +00:00
|
|
|
|
2014-12-12 03:12:18 +00:00
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32)
|
|
|
|
if (LIBCXX_BUILD_32_BITS)
|
|
|
|
message(STATUS "Building 32 bits executables and libraries.")
|
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-m32")
|
|
|
|
endif()
|
|
|
|
elseif(LIBCXX_BUILD_32_BITS)
|
|
|
|
message(FATAL_ERROR "LIBCXX_BUILD_32_BITS=ON is not supported on this platform.")
|
|
|
|
endif()
|
2010-12-10 19:47:54 +00:00
|
|
|
# This is the _ONLY_ place where add_definitions is called.
|
2013-10-21 15:56:35 +00:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
2014-08-18 05:03:46 +00:00
|
|
|
endif()
|
|
|
|
|
2014-12-06 21:02:58 +00:00
|
|
|
# LIBCXX_ENABLE_THREADS configuration
|
|
|
|
if (NOT LIBCXX_ENABLE_THREADS)
|
|
|
|
add_definitions(-D_LIBCPP_HAS_NO_THREADS)
|
|
|
|
if (NOT LIBCXX_ENABLE_MONOTONIC_CLOCK)
|
|
|
|
add_definitions(-D_LIBCPP_HAS_NO_MONOTONIC_CLOCK)
|
|
|
|
endif()
|
|
|
|
# Ensure LIBCXX_ENABLE_MONOTONIC_CLOCK is set to ON.
|
|
|
|
elseif(NOT LIBCXX_ENABLE_MONOTONIC_CLOCK)
|
|
|
|
message(FATAL_ERROR "LIBCXX_ENABLE_MONOTONIC_CLOCK can only be set to OFF"
|
|
|
|
" when LIBCXX_ENABLE_THREADS is also set to OFF.")
|
|
|
|
endif()
|
|
|
|
|
2014-08-18 05:03:46 +00:00
|
|
|
# Configure for sanitizers. If LIBCXX_BUILT_STANDALONE then we have to do
|
|
|
|
# the flag translation ourselves. Othewise LLVM's CMakeList.txt will handle it.
|
|
|
|
if (LIBCXX_BUILT_STANDALONE)
|
|
|
|
# NOTE: LLVM_USE_SANITIZER checks for a UNIX like system instead of MSVC.
|
|
|
|
# But we don't have LLVM_ON_UNIX so checking for MSVC is the best we can do.
|
|
|
|
if (LLVM_USE_SANITIZER AND NOT MSVC)
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_FNO_OMIT_FRAME_POINTER_FLAG
|
2014-11-14 20:38:07 +00:00
|
|
|
"-fno-omit-frame-pointer")
|
|
|
|
if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
|
|
|
|
NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
|
2014-11-15 06:26:30 +00:00
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_HAS_GLINE_TABLES_ONLY_FLAG
|
2014-11-14 20:38:07 +00:00
|
|
|
"-gline-tables-only")
|
|
|
|
endif()
|
2014-08-18 05:03:46 +00:00
|
|
|
if (LLVM_USE_SANITIZER STREQUAL "Address")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-fsanitize=address")
|
2014-08-18 05:03:46 +00:00
|
|
|
elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-fsanitize=memory")
|
2014-08-18 05:03:46 +00:00
|
|
|
if (LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-fsanitize-memory-track-origins")
|
2014-08-18 05:03:46 +00:00
|
|
|
endif()
|
2014-10-16 23:21:59 +00:00
|
|
|
elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
|
2014-11-15 06:26:30 +00:00
|
|
|
list(APPEND LIBCXX_CXX_FLAGS
|
2014-10-16 23:21:59 +00:00
|
|
|
"-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover")
|
2014-11-18 21:26:45 +00:00
|
|
|
elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
|
|
|
|
list(APPEND LIBCXX_CXX_FLAGS "-fsanitize=thread")
|
2014-08-18 05:03:46 +00:00
|
|
|
else()
|
|
|
|
message(WARNING "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
|
|
|
|
endif()
|
|
|
|
elseif(MSVC)
|
|
|
|
message(WARNING "LLVM_USE_SANITIZER is not supported with MSVC")
|
|
|
|
endif()
|
2013-10-21 15:56:35 +00:00
|
|
|
endif()
|
|
|
|
|
2015-01-16 02:27:17 +00:00
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_TARGET_TRIPLE
|
|
|
|
"-target ${LIBCXX_TARGET_TRIPLE}")
|
2015-01-16 00:55:15 +00:00
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_SYSROOT "--sysroot ${LIBCXX_SYSROOT}")
|
|
|
|
append_if(LIBCXX_CXX_FLAGS LIBCXX_GCC_TOOLCHAIN
|
|
|
|
"-gcc-toolchain ${LIBCXX_GCC_TOOLCHAIN}")
|
|
|
|
|
2014-11-15 06:26:30 +00:00
|
|
|
string(REPLACE ";" " " LIBCXX_CXX_FLAGS "${LIBCXX_CXX_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${LIBCXX_CXX_FLAGS}")
|
2010-12-10 19:47:54 +00:00
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Source Code
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
include_directories(include)
|
2013-11-15 17:18:57 +00:00
|
|
|
add_subdirectory(include)
|
2010-12-10 19:47:54 +00:00
|
|
|
|
|
|
|
# Add source code. This also contains all of the logic for deciding linker flags
|
|
|
|
# soname, etc...
|
|
|
|
add_subdirectory(lib)
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Tests
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
add_subdirectory(test)
|