exml/CMakeLists.txt

70 lines
1.5 KiB
CMake
Raw Normal View History

2014-02-24 21:50:50 +01:00
cmake_minimum_required(VERSION 2.8)
# Declare the project
project(exml)
##
## Include C++ X11 dependency ... (check correct flags)
##
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
else()
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
endif()
# set output path:
set(LIBRARY_OUTPUT_PATH lib/${CMAKE_BUILD_TYPE})
include_directories(.)
#Create src file list
set(src_files
exml/debug.cpp
2014-03-04 21:18:41 +01:00
exml/debug.h
2014-02-24 21:50:50 +01:00
exml/Attribute.cpp
2014-03-04 21:18:41 +01:00
exml/Attribute.h
2014-02-24 21:50:50 +01:00
exml/AttributeList.cpp
2014-03-04 21:18:41 +01:00
exml/AttributeList.h
2014-02-24 21:50:50 +01:00
exml/Comment.cpp
2014-03-04 21:18:41 +01:00
exml/Comment.h
2014-02-24 21:50:50 +01:00
exml/Declaration.cpp
2014-03-04 21:18:41 +01:00
exml/Declaration.h
2014-02-24 21:50:50 +01:00
exml/Document.cpp
2014-03-04 21:18:41 +01:00
exml/Document.h
2014-02-24 21:50:50 +01:00
exml/Element.cpp
2014-03-04 21:18:41 +01:00
exml/Element.h
2014-02-24 21:50:50 +01:00
exml/Node.cpp
2014-03-04 21:18:41 +01:00
exml/Node.h
2014-02-24 21:50:50 +01:00
exml/Text.cpp
2014-03-04 21:18:41 +01:00
exml/Text.h
2014-02-24 21:50:50 +01:00
)
add_definitions( -DDEBUG_LEVEL=3 )
add_definitions( -DDEBUG=1 )
2014-03-04 21:18:41 +01:00
if (APPLE)
add_definitions( -D__TARGET_OS__MacOs )
elseif (UNIX)
add_definitions( -D__TARGET_OS__Linux )
elseif (WIN32)
add_definitions( -D__TARGET_OS__Windows )
endif ()
2014-02-24 21:50:50 +01:00
include_directories(${etk_SOURCE_DIR})
include_directories(${linearmath_SOURCE_DIR}/bullet/src/)
#Create a static Lib:
add_library(exml STATIC ${src_files} )
target_link_libraries(exml etk)