-
Notifications
You must be signed in to change notification settings - Fork 51
/
CMakeLists.txt
117 lines (97 loc) · 3.17 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
cmake_minimum_required(VERSION 3.5)
cmake_policy(VERSION 3.5)
# 64 bits Intel binary with 10.13 compatibility (these variables should be set
# before any project command)
if(APPLE)
set(CMAKE_OSX_ARCHITECTURES "${ARCHS_STANDARD_64_BIT}")
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13")
endif(APPLE)
# The project name decides the naming pattern of many things - choose it
# according to the standard of the platform we run on.
if(APPLE)
project("Tagaini Jisho")
else(APPLE)
project("tagainijisho")
endif(APPLE)
# Set the program name to be the same as the project
set(tagaini_binary ${CMAKE_PROJECT_NAME})
set(VERSION 1.2.2)
set(QTVERSION 5.12)
set(CMAKE_AUTOMOC ON)
find_package(Qt5 ${QTVERSION} REQUIRED COMPONENTS Core Widgets PrintSupport
Network LinguistTools)
# FIXME only required when CMake downloads dictionary files. Not necessary for
# building from source package.
find_program(GZIP NAMES gzip REQUIRED)
# Global compiler options Disable deprecation warnings so we can keep building a
# Qt 5.12 compatible version with Qt 5.15 installed.
if(CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -std=c++11 -Wno-deprecated-declarations -Wall -Wextra -Wnon-virtual-dtor -Wno-unused-parameter"
)
endif(CMAKE_COMPILER_IS_GNUCC)
# CMake-required compiler flags
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
# Add the default database lookup data path for Linux if not defined
if(UNIX
AND NOT APPLE
AND NOT DATA_DIR)
set(DATA_DIR "${CMAKE_INSTALL_PREFIX}/share/tagainijisho")
endif(
UNIX
AND NOT APPLE
AND NOT DATA_DIR)
if(WIN32)
if(!MSVC)
set(extra_link_flags "-static-libgcc -static-libstdc++ -mwindows")
endif()
endif(WIN32)
# By default, enable all languages
if(NOT DICT_LANG)
set(DICT_LANG "fr;de;es;ru;it;pt;th;tr")
endif()
# Set DICT_LANG to always appear in the cache
set(DICT_LANG
${DICT_LANG}
CACHE
STRING
"Languages to use for the dictionary data (semicolon-separated 2-letter codes)"
)
# Debug options
option(DEBUG_ENTRIES_CACHE "Debug entries cache behavior" OFF)
option(DEBUG_PATHS "Debug files lookup" OFF)
option(DEBUG_DETAILED_VIEW "Debug detailed view output" OFF)
option(DEBUG_QUERIES "Debug SQL queries" OFF)
option(DEBUG_TRANSACTIONS "Debug database transactions" OFF)
option(DEBUG_LISTS "Debug lists (very slow)" OFF)
# Databases helper targets
add_custom_target(databases ALL)
# i18n
add_subdirectory(i18n)
# Source code
add_subdirectory(src)
# Docs
add_subdirectory(doc)
# Packaging stuff
add_subdirectory(pack)
# External resources fetching and generation
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/3rdparty/)
file(MAKE_DIRECTORY ${CMAKE_SOURCE_DIR}/3rdparty/)
endif()
# Uninstall
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY)
add_custom_target(uninstall "${CMAKE_COMMAND}" -P
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
# Code formatting
add_custom_target(
format
find
${CMAKE_CURRENT_SOURCE_DIR}/src
-name "*.cc"
-o
-name "*.h"
| grep -v DictionaryDescriptions
| xargs clang-format -i
)