This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/utf8proc/CMakeLists.txt

73 lines
1.4 KiB
CMake
Raw Normal View History

2015-09-21 23:05:36 +01:00
cmake_minimum_required (VERSION 2.8)
2016-03-30 17:35:03 +01:00
if(POLICY CMP0042)
cmake_policy(SET CMP0042 NEW)
endif(POLICY CMP0042)
2015-09-21 23:05:36 +01:00
include (utils.cmake)
disallow_intree_builds()
#project (utf8proc C)
# Be sure to also update these in Makefile!
set(SO_MAJOR 1)
set(SO_MINOR 3)
set(SO_PATCH 0)
add_definitions (
-DUTF8PROC_EXPORTS
)
if (NOT MSVC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall")
endif ()
2016-03-30 17:35:03 +01:00
SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${my_cxx_flags}" )
SET( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${my_cxx_flags}" )
2016-04-05 23:56:25 +01:00
if (YAP_SINGLE_FILE)
2016-04-05 08:04:09 +01:00
add_library (utf8proc OBJECT
utf8proc.c
utf8proc.h
)
2016-04-05 23:56:25 +01:00
else(YAP_SINGLE_FILE)
2016-04-05 08:04:09 +01:00
add_library (utf8proc SHARED
2015-09-21 23:05:36 +01:00
utf8proc.c
utf8proc.h
)
2016-04-05 08:04:09 +01:00
2016-04-08 09:29:10 +01:00
# copy DLL to yap main bin dir so that we can use yap
# during compilation
if (WIN32)
ADD_CUSTOM_target( setupUTF8)
SET (UTFPATH $<TARGET_FILE:utf8proc>)
add_custom_command(TARGET setupUTF8 POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${UTFPATH} ${CMAKE_BINARY_DIR}
)
ADD_DEPENDENCIES(libYap setupUTF8)
endif(WIN32)
2016-04-05 08:04:09 +01:00
install(TARGETS utf8proc
LIBRARY DESTINATION ${libdir}
ARCHIVE DESTINATION ${libdir})
2016-04-05 23:56:25 +01:00
endif(YAP_SINGLE_FILE)
2016-04-05 08:04:09 +01:00
2015-09-21 23:05:36 +01:00
set_target_properties (utf8proc PROPERTIES
POSITION_INDEPENDENT_CODE ON
VERSION "${SO_MAJOR}.${SO_MINOR}.${SO_PATCH}"
SOVERSION ${SO_MAJOR}
)
set( CMAKE_REQUIRED_INCLUDES . ${CMAKE_REQUIRED_INCLUDES} )
2016-03-30 17:35:03 +01:00
2015-09-21 23:05:36 +01:00
set ( YAP_YAPUTF8LIB $<TARGET_FILE_NAME:utf8proc> )