-
Notifications
You must be signed in to change notification settings - Fork 345
/
CMakeLists.txt
506 lines (463 loc) · 16.7 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
cmake_minimum_required(VERSION 3.1.0)
project(TeXstudio VERSION 4.8.5 LANGUAGES C CXX)
SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
set(CMAKE_DEBUG_POSTFIX "d")
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
if(APPLE)
set(CMAKE_CXX_STANDARD 20)
else()
set(CMAKE_CXX_STANDARD 17)
endif()
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
find_package(GitInfo)
if(GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
git_wc_info(${PROJECT_SOURCE_DIR} VARPREFIX)
add_definitions(-DTEXSTUDIO_VERSION="${VARPREFIX_WC_LATEST_TAG_LONG}")
message(STATUS "The current git hash is ${VARPREFIX_WC_REVISION_HASH}")
message(STATUS "The current git describe is ${VARPREFIX_WC_LATEST_TAG_LONG}")
else()
add_definitions(-DTEXSTUDIO_VERSION="${CMAKE_PROJECT_VERSION}")
message(STATUS "No git present.")
unset(GIT_FOUND)
set(VARPREFIX_WC_LATEST_TAG_LONG "${CMAKE_PROJECT_VERSION}+0+0")
endif()
include(cmake/project_version.cmake)
if(MSVC)
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -D_CRT_SECURE_NO_WARNINGS -D_UNICODE -DUNICODE)
add_compile_options(/wd4267 /wd4244)
add_compile_options($<$<CXX_COMPILER_ID:MSVC>:/MP>)
else()
add_compile_options(-Wno-deprecated-declarations)
endif()
if(WIN32 AND NOT MSVC)
add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-fpermissive>)
add_compile_options(-Wa,-mbig-obj)
endif()
find_package(QT NAMES Qt6 Qt5 COMPONENTS Widgets LinguistTools REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Network Xml Concurrent Widgets UiTools REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS PrintSupport Svg Qml REQUIRED)
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS LinguistTools QUIET)
endif()
message(STATUS "building for Qt ${QT_VERSION_MAJOR}")
# Source
add_subdirectory(src)
# qtsingleapplication
add_subdirectory(src/qtsingleapplication)
# main
set(RESOURCE_FILES
texstudio.qrc
symbols.qrc
completion.qrc
images.qrc
)
if(APPLE)
file(GLOB manual
utilities/manual/build/html/*.html
)
set(manual ${manual} utilities/manual/build/html/searchindex.js)
file(GLOB images
utilities/manual/build/html/_images/*.webp
)
file(GLOB static
utilities/manual/build/html/_static/*
)
file(GLOB static_scripts
utilities/manual/build/html/_static/scripts/*
)
file(GLOB static_styles
utilities/manual/build/html/_static/styles/*
)
file(GLOB design_static
utilities/manual/build/html/_sphinx_design_static/*
)
file(GLOB_RECURSE templates
templates/*
)
file(GLOB_RECURSE translation
translation/*.qm
)
file(GLOB_RECURSE dictionaries
utilities/dictionaries/*
)
set(OSX_FILES
texstudio.icns
utilities/latex2e.html
utilities/latex2e.css
utilities/list.png
utilities/manual/source/CHANGELOG.md
${templates}
${dictionaries}
${translation}
)
else()
set(OSX_FILES "")
endif()
set(TRANSLATION_FILES
translation/texstudio_en.ts
)
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6 AND CMAKE_BUILD_TYPE STREQUAL "Debug")
if(${QT_VERSION_MINOR} LESS_EQUAL 6)
message(STATUS "Generate translation source option.")
qt6_add_lupdate(texstudio TS_FILES ${TRANSLATION_FILES})
endif()
if(${QT_VERSION_MINOR} GREATER_EQUAL 7)
message(STATUS "Generate translation source option. (>= Qt6.7)")
qt6_add_translations(texstudio TS_FILES ${TRANSLATION_FILES})
endif()
endif()
if(WIN32)
set(SOURCE_FILES ${SOURCE_FILES} win.rc)
endif()
if(UNIX AND NOT APPLE AND NOT HAIKU)
add_subdirectory(src/xkb)
endif()
# Hunspell
find_package(Hunspell QUIET)
if(Hunspell_FOUND)
message(STATUS "Using system Hunspell")
set(HUNSPELL_SOURCE_LINK 0)
get_filename_component(HUNSPELL_LIB_NAME ${HUNSPELL_LIBRARIES} NAME)
string(FIND ${HUNSPELL_LIB_NAME} "static" HUNSPELL_IS_STATIC_POS)
if(${HUNSPELL_IS_STATIC_POS} GREATER 0)
set(HUNSPELL_SOURCE_LINK 1)
endif()
if(${HUNSPELL_SOURCE_LINK} GREATER 0)
option(HUNSPELL_IS_STATIC "Hunspell is a static library" ON)
else()
option(HUNSPELL_IS_STATIC "Hunspell is a static library" OFF)
endif()
else()
message(STATUS "Using internal Hunspell")
add_subdirectory(src/hunspell)
set(HUNSPELL_SOURCE_LINK 2)
set(HUNSPELL_IS_STATIC ON)
endif()
if(${HUNSPELL_IS_STATIC})
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DHUNSPELL_STATIC)
endif()
# qcodeedit
add_subdirectory(src/qcodeedit)
# debughelper
add_subdirectory(src/debug)
# latexparser
add_subdirectory(src/latexparser)
# symbolpanel
add_subdirectory(src/symbolpanel)
#qtermwidget
if(${QT_VERSION_MAJOR} LESS_EQUAL 5)
find_package(QTermWidget QUIET)
if(QTermWidget_FOUND)
message(STATUS "Using QTermWidget5")
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DINTERNAL_TERMINAL)
endif()
endif()
# QuaZIP
find_package(QuaZip-Qt${QT_VERSION_MAJOR} QUIET)
if(QuaZip-Qt${QT_VERSION_MAJOR}_FOUND)
message(STATUS "quazip 1.x found")
else()
find_package(QuaZip QUIET)
if(QUAZIP_FOUND)
message(STATUS "Using system QuaZIP")
set(QUAZIP_SOURCE_LINK 0)
get_filename_component(QUAZIP_LIB_NAME ${QUAZIP_LIBRARIES} NAME)
string(FIND ${QUAZIP_LIB_NAME} "static" QUAZIP_IS_STATIC_POS)
if(${QUAZIP_IS_STATIC_POS} GREATER 0)
set(QUAZIP_SOURCE_LINK 1)
endif()
if(${QUAZIP_SOURCE_LINK} GREATER 0)
option(QUAZIP_IS_STATIC "QuaZIP is a static library" ON)
else()
option(QUAZIP_IS_STATIC "QuaZIP is a static library" OFF)
endif()
else()
message(STATUS "Using internal QuaZIP and internal zlib")
if(WIN32)
set(ZLIB_BUILD_EXAMPLES OFF)
set(SKIP_INSTALL_LIBRARIES ON)
add_subdirectory(src/zlib-1.3.1)
set(ZLIB_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/src/zlib-1.3.1)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
set(ZLIB_LIBRARY ${CMAKE_CURRENT_BINARY_DIR}/src/zlib-1.3.1/libzlibd.dll)
else()
set(ZLIB_LIBRARY ${CMAKE_CURRENT_BINARY_DIR}/src/zlib-1.3.1/libzlib.dll)
endif()
endif()
set(BUILD_SHARED_LIBS OFF)
set(QUAZIP_INSTALL OFF)
set(QUAZIP_USE_QT_ZLIB OFF)
set(QUAZIP_ENABLE_TESTS OFF)
set(QUAZIP_BZIP2 OFF)
set(QUAZIP_IS_STATIC ON)
set(QUAZIP_SOURCE_LINK 2)
add_subdirectory(src/quazip)
endif()
if(${QUAZIP_IS_STATIC})
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DQUAZIP_STATIC)
endif()
endif()
# Options
if(NOT MSVC)
option(TEXSTUDIO_ENABLE_CRASH_HANDLER "Enable/Disable internal crash handler" ON)
if(NOT ${TEXSTUDIO_ENABLE_CRASH_HANDLER})
message(STATUS "Internal crash handler disabled as you wish.")
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DNO_CRASH_HANDLER)
endif()
else()
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DNO_CRASH_HANDLER)
endif()
option(TEXSTUDIO_BUILD_ADWAITA "Enable/Disable internal adwaita-qt style" ON)
if(TEXSTUDIO_BUILD_ADWAITA)
find_package(Qt${QT_VERSION_MAJOR}DBus REQUIRED)
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DADWAITA)
message(STATUS "integrate adwaita style")
endif()
add_subdirectory(src/adwaita-qt)
option(TEXSTUDIO_ENABLE_TESTS "Enable/Disable internal tests" OFF)
if(${TEXSTUDIO_ENABLE_TESTS})
message(STATUS "tests enabled.")
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Test REQUIRED)
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DTESTDATADIR="${CMAKE_CURRENT_SOURCE_DIR}/src/tests/testdata")
set(HEADER_FILES ${HEADER_FILES}
src/tests/buildmanager_t.h
src/tests/codesnippet_t.h
src/tests/encoding_t.h
src/tests/execprogram_t.h
src/tests/git_t.h
src/tests/help_t.h
src/tests/latexcompleter_t.h
src/tests/latexdocument_t.h
src/tests/latexeditorview_bm.h
src/tests/latexeditorview_t.h
src/tests/latexoutputfilter_t.h
src/tests/latexparser_t.h
src/tests/latexparsing_t.h
src/tests/latexstyleparser_t.h
src/tests/qcetestutil.h
src/tests/qdocumentcursor_t.h
src/tests/qdocumentline_t.h
src/tests/qdocumentsearch_t.h
src/tests/qeditor_t.h
src/tests/qsearchreplacepanel_t.h
src/tests/scriptengine_t.h
src/tests/smallUsefulFunctions_t.h
src/tests/structureview_t.h
src/tests/syntaxcheck_t.h
src/tests/tablemanipulation_t.h
src/tests/testmanager.h
src/tests/testutil.h
src/tests/texstudio_t.h
src/tests/updatechecker_t.h
src/tests/usermacro_t.h
src/tests/utilsui_t.h
src/tests/utilsversion_t.h
)
set(SOURCE_FILES ${SOURCE_FILES}
src/tests/codesnippet_t.cpp
src/tests/encoding_t.cpp
src/tests/execprogram_t.cpp
src/tests/git_t.cpp
src/tests/latexcompleter_t.cpp
src/tests/latexdocument_t.cpp
src/tests/latexeditorview_bm.cpp
src/tests/latexeditorview_t.cpp
src/tests/latexoutputfilter_t.cpp
src/tests/latexparser_t.cpp
src/tests/latexparsing_t.cpp
src/tests/latexstyleparser_t.cpp
src/tests/qcetestutil.cpp
src/tests/qdocumentcursor_t.cpp
src/tests/qdocumentline_t.cpp
src/tests/qdocumentsearch_t.cpp
src/tests/qeditor_t.cpp
src/tests/qsearchreplacepanel_t.cpp
src/tests/scriptengine_t.cpp
src/tests/smallUsefulFunctions_t.cpp
src/tests/structureview_t.cpp
src/tests/syntaxcheck_t.cpp
src/tests/tablemanipulation_t.cpp
src/tests/testmanager.cpp
src/tests/testutil.cpp
src/tests/texstudio_t.cpp
src/tests/usermacro_t.cpp
)
else()
message(STATUS "tests disabled.")
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DNO_TESTS)
endif()
option(TEXSTUDIO_ENABLE_MEDIAPLAYER "Enable/Disable the video player in pdf files" OFF)
if(${TEXSTUDIO_ENABLE_MEDIAPLAYER})
message(STATUS "the video player in pdf files is enabled.")
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Multimedia MultimediaWidgets REQUIRED)
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DMEDIAPLAYER)
else()
message(STATUS "the video player in pdf files is disabled.")
endif()
option(TEXSTUDIO_ENABLE_DEBUG_LOGGER "Enable/Disable debug logger" OFF)
if(${TEXSTUDIO_ENABLE_DEBUG_LOGGER})
message(STATUS "Debug logger is built.")
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DDEBUG_LOGGER)
endif()
# poppler
find_package(PkgConfig)
pkg_check_modules(POPPLER QUIET IMPORTED_TARGET poppler poppler-cpp poppler-qt${QT_VERSION_MAJOR})
if(POPPLER_FOUND)
message(STATUS "Build internal pdf previewer.")
else()
message(STATUS "Poppler not found, internal pdf previewer disabled.")
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -DNO_POPPLER_PREVIEW)
if(WIN32)
set(ADDITIONAL_DEFINITIONS ${ADDITIONAL_DEFINITIONS} -D_WIN32)
endif()
endif()
add_subdirectory(src/pdfviewer)
# Build texstudio application
add_executable(texstudio ${SOURCE_FILES} ${HEADER_FILES} ${RESOURCE_FILES} ${FORM_FILES} ${OSX_FILES} ${manual} ${images} ${static} ${static_scripts} ${static_styles} ${design_static}
)
target_link_libraries(texstudio PRIVATE
Qt${QT_VERSION_MAJOR}::Core
Qt${QT_VERSION_MAJOR}::Gui
Qt${QT_VERSION_MAJOR}::Widgets
Qt${QT_VERSION_MAJOR}::PrintSupport
Qt${QT_VERSION_MAJOR}::Svg
Qt${QT_VERSION_MAJOR}::Network
Qt${QT_VERSION_MAJOR}::Xml
Qt${QT_VERSION_MAJOR}::Qml
Qt${QT_VERSION_MAJOR}::Concurrent
Qt${QT_VERSION_MAJOR}::UiTools
)
if(NOT MSVC AND CMAKE_VERSION VERSION_GREATER_EQUAL "3.16.0")
target_precompile_headers(texstudio PUBLIC src/mostQtHeaders.h)
endif()
if(TEXSTUDIO_BUILD_ADWAITA)
target_link_libraries(texstudio PRIVATE Qt${QT_VERSION_MAJOR}::DBus)
endif()
set_source_files_properties(${OSX_FILES} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources")
set_source_files_properties(${manual} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html")
set_source_files_properties(${images} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html/_images")
set_source_files_properties(${static} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html/_static")
set_source_files_properties(${static_scripts} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html/_static/scripts")
set_source_files_properties(${static_styles} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html/_static/styles")
set_source_files_properties(${design_static} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/html/_sphinx_design_static")
set_target_properties(texstudio PROPERTIES
#MACOSX_BUNDLE_GUI_IDENTIFIER texstudio.org
#MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
#MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
#MACOSX_BUNDLE_ICON_FILE texstudio.icns
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist
MACOSX_BUNDLE TRUE
WIN32_EXECUTABLE TRUE
)
# debughelper -> pthread
if(${TEXSTUDIO_ENABLE_CRASH_HANDLER})
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
set(THREADS_PREFER_PTHREAD_FLAG TRUE)
find_package(Threads REQUIRED)
target_link_libraries(texstudio PUBLIC Threads::Threads)
endif()
target_include_directories(texstudio PUBLIC ${INC_DIRECTORIES})
target_compile_definitions(texstudio PUBLIC ${ADDITIONAL_DEFINITIONS})
if(Hunspell_FOUND)
target_include_directories(texstudio PUBLIC ${HUNSPELL_INCLUDE_DIR})
target_link_libraries(texstudio PUBLIC ${HUNSPELL_LIBRARIES})
else()
target_include_directories(texstudio PUBLIC src/hunspell)
target_link_libraries(texstudio PUBLIC hunspell)
endif()
if(QuaZip-Qt${QT_VERSION_MAJOR}_FOUND)
target_link_libraries(texstudio PUBLIC QuaZip::QuaZip)
else()
if(QUAZIP_FOUND)
target_include_directories(texstudio PUBLIC ${QUAZIP_INCLUDE_DIR})
target_link_libraries(texstudio PUBLIC ${QUAZIP_LIBRARIES})
else()
target_link_libraries(texstudio PUBLIC QuaZip::QuaZip)
endif()
endif()
find_package(ZLIB REQUIRED)
if(ZLIB_FOUND)
target_include_directories(texstudio PUBLIC ${ZLIB_INCLUDE_DIR})
target_link_libraries(texstudio PUBLIC ${ZLIB_LIBRARIES})
endif()
if(UNIX AND NOT APPLE AND NOT HAIKU)
find_package(X11 REQUIRED)
target_include_directories(texstudio PUBLIC ${X11_INCLUDE_DIRS})
target_link_libraries(texstudio PUBLIC ${X11_LIBRARIES})
endif()
#qtermwidget
if(QTERMWIDGET_FOUND AND ${QT_VERSION_MAJOR} LESS_EQUAL 5 )
target_link_libraries(texstudio PUBLIC qtermwidget5)
endif()
#mediaplayer
if(Qt${QT_VERSION_MAJOR}Multimedia_FOUND)
message(STATUS "${Qt${QT_VERSION_MAJOR}Multimedia_FOUND}")
target_include_directories(texstudio PUBLIC ${Qt${QT_VERSION_MAJOR}Multimedia_INCLUDE_DIRS})
target_include_directories(texstudio PUBLIC ${Qt${QT_VERSION_MAJOR}MultimediaWidgets_INCLUDE_DIRS})
target_link_libraries(texstudio PUBLIC Qt${QT_VERSION_MAJOR}::Multimedia)
target_link_libraries(texstudio PUBLIC Qt${QT_VERSION_MAJOR}::MultimediaWidgets)
endif()
if(POPPLER_FOUND)
target_link_libraries(texstudio PUBLIC PkgConfig::POPPLER)
endif()
if(${TEXSTUDIO_ENABLE_TESTS})
target_link_libraries(texstudio PUBLIC Qt${QT_VERSION_MAJOR}::Test)
target_include_directories(texstudio PUBLIC src/tests)
endif()
if(WIN32)
target_link_libraries(texstudio PUBLIC Shlwapi)
endif()
## installation
include(GNUInstallDirs)
install(TARGETS texstudio DESTINATION ${CMAKE_INSTALL_BINDIR})
if(UNIX AND NOT APPLE AND NOT HAIKU)
option(APPDATA "Install appdata" ON)
install(FILES utilities/texstudio.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications)
install(FILES utilities/texstudio.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps)
if(${APPDATA})
install(FILES utilities/texstudio.metainfo.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo)
endif()
endif()
if(UNIX)
install(DIRECTORY translation/
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
FILES_MATCHING
PATTERN *.qm
)
install(DIRECTORY templates/
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
FILES_MATCHING
PATTERN *
)
install(DIRECTORY utilities/dictionaries/
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
FILES_MATCHING
PATTERN *
)
install(DIRECTORY utilities/manual/build/html/
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
FILES_MATCHING
PATTERN *.html
)
install(DIRECTORY utilities/manual/build/html/_images
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
FILES_MATCHING
PATTERN *.webp
)
install(DIRECTORY utilities/manual/build/html/_sphinx_design_static
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
)
install(DIRECTORY utilities/manual/build/html/_static
DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio
)
install(FILES utilities/manual/build/html/searchindex.js DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/latex2e.html DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/latex2e.css DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/list.png DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/AUTHORS DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/COPYING DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
install(FILES utilities/manual/source/CHANGELOG.md DESTINATION ${CMAKE_INSTALL_DATADIR}/texstudio)
endif()