2016-03-14 15:27:33 +01:00
|
|
|
# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
|
|
|
#
|
|
|
|
|
# This file is free software; as a special exception the author gives
|
|
|
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
|
|
|
# modifications, as long as this notice is preserved.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2015-03-11 10:06:24 +01:00
|
|
|
|
2016-03-14 15:27:33 +01:00
|
|
|
include(CheckSymbolExists)
|
2015-03-11 10:06:24 +01:00
|
|
|
if (WIN32)
|
|
|
|
|
check_symbol_exists(open io.h HAVE_OPEN)
|
|
|
|
|
else ()
|
|
|
|
|
check_symbol_exists(open fcntl.h HAVE_OPEN)
|
|
|
|
|
endif ()
|
2015-07-01 21:06:59 +02:00
|
|
|
|
2016-03-14 15:27:33 +01:00
|
|
|
set(FMT_SOURCES
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cppformat/format.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cppformat/format.cc)
|
|
|
|
|
|
2015-03-11 10:06:24 +01:00
|
|
|
if (HAVE_OPEN)
|
2016-03-14 15:27:33 +01:00
|
|
|
set(FMT_SOURCES ${FMT_SOURCES}
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cppformat/posix.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cppformat/posix.cc)
|
|
|
|
|
endif()
|
2015-03-11 10:06:24 +01:00
|
|
|
|
2016-03-12 14:30:11 +01:00
|
|
|
add_library(cppformat STATIC ${FMT_SOURCES})
|
2015-03-18 00:47:19 +00:00
|
|
|
|
2016-03-14 15:27:33 +01:00
|
|
|
target_include_directories(cppformat
|
|
|
|
|
PUBLIC
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
|
|
|
|
|
|
set_target_properties(cppformat
|
|
|
|
|
PROPERTIES
|
|
|
|
|
FOLDER
|
|
|
|
|
"dep")
|