-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
CMakeLists.txt
128 lines (107 loc) · 3.58 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#=========================================================================
#
# Copyright (C) 2020 Ivan Pinezhaninov <[email protected]>
#
# This file is part of the QDbf - Qt DBF library.
#
# The QDbf is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# The QDbf is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the QDbf. If not, see <http://www.gnu.org/licenses/>.
#
#=========================================================================
cmake_minimum_required(VERSION 2.8.11)
project(QDbf CXX)
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-std=c++11" COMPILER_SUPPORTS_CXX11)
check_cxx_compiler_flag("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(FATAL "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
# Qt
message("Searching for preferred Qt version...")
if(DEFINED QT_DESIRED_VERSION)
if(QT_DESIRED_VERSION MATCHES 5)
set(QT_VERSION_MAJOR 5)
find_package(Qt5Core REQUIRED)
else(QT_DESIRED_VERSION MATCHES 5)
if(QT_DESIRED_VERSION MATCHES 4)
find_package(Qt4 REQUIRED)
else(QT_DESIRED_VERSION MATCHES 4)
message(FATAL_ERROR "You must specify the 4th or the 5th version of Qt")
endif(QT_DESIRED_VERSION MATCHES 4)
endif(QT_DESIRED_VERSION MATCHES 5)
else(DEFINED QT_DESIRED_VERSION)
find_package(Qt5Core QUIET)
if(Qt5Core_FOUND)
set(QT_VERSION_MAJOR 5)
else(Qt5Core_FOUND)
message("Qt 5 not found, searching for Qt4")
find_package(Qt4 REQUIRED)
endif(Qt5Core_FOUND)
endif(DEFINED QT_DESIRED_VERSION)
message("Qt version is used: ${QT_VERSION_MAJOR}")
if(QT_VERSION_MAJOR MATCHES 5)
add_definitions(${Qt5Core_DEFINITIONS})
else()
include(${QT_USE_FILE})
add_definitions(${QT_DEFINITIONS})
endif()
set(HEADERS
include/qdbf_compat.h
include/qdbf_global.h
include/qdbffield.h
include/qdbfrecord.h
include/qdbftable.h
include/qdbftablemodel.h
)
set(SOURCES
src/qdbffield.cpp
src/qdbfrecord.cpp
src/qdbftable.cpp
src/qdbftablemodel.cpp
)
set(MOC_HEADERS
include/qdbftablemodel.h
)
if(QT_VERSION_MAJOR MATCHES 5)
qt5_wrap_cpp(SOURCES ${MOC_HEADERS})
qt5_generate_moc(include/qdbftablemodel.h ${CMAKE_CURRENT_BINARY_DIR}/moc_qdbftablemodel.cpp)
else()
qt4_wrap_cpp(SOURCES ${MOC_HEADERS})
qt4_generate_moc(include/qdbftablemodel.h ${CMAKE_CURRENT_BINARY_DIR}/moc_qdbftablemodel.cpp)
endif()
set_source_files_properties(src/qdbftablemodel.cpp PROPERTIES
OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/moc_qdbftablemodel.cpp
)
add_definitions(-DQDBF_LIBRARY)
option(BUILD_EXAMPLE "Build example" OFF)
if(BUILD_EXAMPLE)
add_subdirectory(example)
endif(BUILD_EXAMPLE)
set(TARGET QDbf)
add_library(${TARGET} SHARED
${HEADERS}
${SOURCES}
${MOC_HEADERS}
)
if(QT_VERSION_MAJOR MATCHES 5)
target_link_libraries(${TARGET} ${Qt5Core_LIBRARIES})
else()
target_link_libraries(${TARGET} ${QT_LIBRARIES})
endif()
target_include_directories(${TARGET} PUBLIC include)
install(TARGETS ${TARGET} LIBRARY DESTINATION lib)
install(FILES ${HEADERS} DESTINATION include)