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/CMakeLists.txt

157 lines
3.4 KiB
CMake
Raw Normal View History

2016-07-31 10:56:54 +01:00
# value of 3.4.0 or lower.
2014-12-14 12:05:43 +00:00
2016-07-31 10:56:54 +01:00
# Sets the minimum version of CMake required to build the native
# library. You should either keep the default value or only pass a
# value of 3.4.0 or lower.
2015-08-08 15:11:29 +01:00
2016-08-03 00:30:02 +01:00
project( YAP )
2016-11-08 07:37:36 +00:00
if (ANDROID)
2016-11-11 07:23:34 +00:00
set(YAP_APP_DIR "${CMAKE_SOURCE_DIR}/../..")
2016-11-08 07:37:36 +00:00
cmake_policy(VERSION 3.4)
2016-11-11 07:23:34 +00:00
2016-11-08 07:37:36 +00:00
else ()
2016-08-03 00:30:02 +01:00
cmake_minimum_required(VERSION 2.8)
include(CMakeToolsHelpers OPTIONAL)
2016-11-08 07:37:36 +00:00
endif()
2016-08-22 05:31:21 +01:00
2016-07-31 10:56:54 +01:00
set(
2016-12-16 17:22:50 +00:00
CMAKE_MODULE_PATH
"${CMAKE_SOURCE_DIR}"
"${CMAKE_SOURCE_DIR}/cmake"
)
2016-05-30 11:23:36 +01:00
2016-07-31 10:56:54 +01:00
include(CheckIncludeFiles)
2015-06-19 01:30:13 +01:00
include(CheckLibraryExists)
include(CheckSymbolExists)
include(CheckTypeSize)
2016-07-31 10:56:54 +01:00
include(CMakeDependentOption)
include(MacroOptionalAddSubdirectory)
include(MacroOptionalFindPackage)
include(MacroLogFeature)
include(FindPackageHandleStandardArgs)
2016-08-30 14:29:40 +01:00
include (GNUInstallDirs)
2016-12-10 07:06:16 +00:00
2016-07-31 10:56:54 +01:00
# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds it for you.
# Gradle automatically packages shared libraries with your APK.
2015-06-19 01:30:13 +01:00
2016-11-11 07:23:34 +00:00
#cross-compilation support
# Search packages for host system instead of packages for target system
# in case of cross compilation these macro should be defined by toolchain file
if(NOT COMMAND find_host_package)
macro(find_host_package)
find_package(${ARGN})
endmacro()
endif()
if(NOT COMMAND find_host_program)
macro(find_host_program)
find_program(${ARGN})
endmacro()
endif()
2015-06-19 01:30:13 +01:00
option(BUILD_SHARED_LIBS "Build shared library" ON)
2016-12-16 17:22:50 +00:00
set (CMAKE_POSITION_INDEPENDENT_CODE TRUE)
2016-07-31 10:56:54 +01:00
include(Prelims NO_POLICY_SCOPE)
2016-06-02 11:52:22 +01:00
2016-07-31 10:56:54 +01:00
include(Sources NO_POLICY_SCOPE)
2016-05-30 11:23:36 +01:00
2016-07-31 10:56:54 +01:00
include(Model NO_POLICY_SCOPE)
2016-05-30 11:23:36 +01:00
2016-11-24 04:35:39 +00:00
include_directories ( utf8proc packages/myddas packages/myddas/sqlite3/src)
2016-11-11 15:53:09 +00:00
if (ANDROID)
include_directories (
2016-11-24 04:35:39 +00:00
packages/myddas/sqlite3/src/Android/jni/sqlite
packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper
2016-11-11 07:23:34 +00:00
)
2016-11-11 15:53:09 +00:00
endif (ANDROID)
2016-07-31 10:56:54 +01:00
add_definitions(-DUSE_MYDDAS=1 -DMYDDAS_SQLITE3=1)
2016-05-30 11:23:36 +01:00
2016-07-31 10:56:54 +01:00
if (MYSQL_FOUND)
add_definitions(= -DMYDDAS_MYSQL=1)
2016-05-30 11:23:36 +01:00
endif()
2015-06-19 01:30:13 +01:00
2016-07-31 10:56:54 +01:00
if (ODBC_FOUND)
add_definitions(= -DMYDDAS_ODBC=1)
endif()
2016-07-31 10:56:54 +01:00
if (MYSQL_POSTGRES)
add_definitions(= -DMYDDAS_POSTGRES=1)
endif()
2016-12-16 17:22:50 +00:00
if (ANDROID)
2015-03-28 20:08:33 +00:00
2016-07-31 10:56:54 +01:00
ADD_SUBDIRECTORY(os)
ADD_SUBDIRECTORY(OPTYap)
ADD_SUBDIRECTORY(packages/myddas)
ADD_SUBDIRECTORY(utf8proc)
ADD_SUBDIRECTORY(CXX)
2016-12-10 07:06:16 +00:00
2016-11-11 15:53:09 +00:00
set (SWIG_FILES ${CMAKE_SOURCE_DIR}/../generated/jni/yap_wrap.cpp )
2016-07-31 10:56:54 +01:00
else ()
set(YLIBS
2016-12-03 16:38:07 +00:00
$<TARGET_OBJECTS:core>
2016-07-31 10:56:54 +01:00
$<TARGET_OBJECTS:libYAPOs>
$<TARGET_OBJECTS:libOPTYap>
$<TARGET_OBJECTS:myddas>
$<TARGET_OBJECTS:Yapsqlite3>
$<TARGET_OBJECTS:libswi>
$<TARGET_OBJECTS:utf8proc>
)
endif ()
2016-08-01 12:54:28 +01:00
if (WIN32)
2016-12-03 16:38:07 +00:00
list (APPEND YLIBS $<TARGET_OBJECTS:YapC++>)
2016-12-16 17:22:50 +00:00
endif()
2016-08-01 12:54:28 +01:00
2016-12-16 17:22:50 +00:00
add_component (core
${ENGINE_SOURCES}
${SWIG_FILES}
${C_INTERFACE_SOURCES}
${STATIC_SOURCES}
${ALL_SOURCES}
)
2016-12-03 16:38:07 +00:00
2016-07-31 10:56:54 +01:00
add_library( # Sets the name of the library.
libYap
# Sets the library as a shared library.
SHARED
2016-08-01 12:54:28 +01:00
${YLIBS}
${WINDLLS}
2016-07-31 10:56:54 +01:00
)
2016-04-08 09:13:45 +01:00
2016-08-01 12:54:28 +01:00
include(libYap NO_POLICY_SCOPE)
2016-07-31 10:56:54 +01:00
if (USE_READLINE)
2016-08-01 12:54:28 +01:00
target_link_libraries(libYap ${READLINE_LIBRARIES})
2016-07-31 10:56:54 +01:00
endif (USE_READLINE)
2016-08-01 12:54:28 +01:00
2016-06-02 11:52:22 +01:00
if (ANDROID)
2016-11-11 07:23:34 +00:00
add_dependencies(libYap plmyddas )
2016-05-31 19:28:29 +01:00
2016-08-03 00:30:02 +01:00
target_link_libraries(libYap android log)
2016-08-22 05:31:21 +01:00
2016-07-31 10:56:54 +01:00
endif ()
2016-05-31 19:28:29 +01:00
2016-07-31 10:56:54 +01:00
set_target_properties(libYap
PROPERTIES OUTPUT_NAME Yap
2016-06-02 11:52:22 +01:00
)
2016-05-31 19:28:29 +01:00
2016-08-01 12:54:28 +01:00
MY_include(Packages NO_POLICY_SCOPE)
2016-10-16 23:18:51 +01:00
include(Config NO_POLICY_SCOPE)