2020-08-25 16:05:56 +02:00
|
|
|
# === This file is part of Calamares - <https://calamares.io> ===
|
2020-06-10 00:31:13 +02:00
|
|
|
#
|
2020-05-30 16:15:03 +02:00
|
|
|
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
2020-08-26 00:24:52 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-05-30 16:15:03 +02:00
|
|
|
#
|
2020-08-07 00:45:36 +02:00
|
|
|
|
2020-05-30 16:15:03 +02:00
|
|
|
#
|
2019-05-07 13:02:55 +02:00
|
|
|
# libcalamares is the non-GUI part of Calamares, which includes handling
|
2020-08-07 00:45:36 +02:00
|
|
|
# translations, configurations, logging, utilities, global storage, and
|
|
|
|
# (non-GUI) jobs.
|
|
|
|
#
|
2019-05-07 13:02:55 +02:00
|
|
|
|
2020-05-14 01:05:37 +02:00
|
|
|
add_definitions( -DDLLEXPORT_PRO )
|
2020-05-14 11:15:23 +02:00
|
|
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} )
|
2014-06-04 16:35:26 +02:00
|
|
|
|
2014-06-26 14:18:32 +02:00
|
|
|
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresConfig.h.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/CalamaresConfig.h )
|
2020-07-28 14:58:43 +02:00
|
|
|
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersion.h.in
|
2014-06-04 18:19:05 +02:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersion.h )
|
2020-07-28 14:58:43 +02:00
|
|
|
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersionX.h.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersionX.h )
|
2014-06-04 16:35:26 +02:00
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
set( OPTIONAL_PRIVATE_LIBRARIES "" )
|
2019-05-10 16:57:50 +02:00
|
|
|
set( OPTIONAL_PUBLIC_LIBRARIES "" )
|
2019-05-10 14:04:36 +02:00
|
|
|
|
2014-06-04 16:35:26 +02:00
|
|
|
set( libSources
|
2016-09-25 03:20:50 +02:00
|
|
|
CppJob.cpp
|
2014-07-21 17:08:06 +02:00
|
|
|
GlobalStorage.cpp
|
2014-06-27 15:34:05 +02:00
|
|
|
Job.cpp
|
2019-03-17 18:25:35 +01:00
|
|
|
JobExample.cpp
|
2014-06-04 16:35:26 +02:00
|
|
|
JobQueue.cpp
|
2014-07-10 12:08:43 +02:00
|
|
|
ProcessJob.cpp
|
2018-04-05 10:31:13 +02:00
|
|
|
Settings.cpp
|
2019-05-10 14:04:36 +02:00
|
|
|
|
|
|
|
# GeoIP services
|
|
|
|
geoip/Interface.cpp
|
2020-06-03 15:03:19 +02:00
|
|
|
geoip/GeoIPFixed.cpp
|
2019-05-10 14:04:36 +02:00
|
|
|
geoip/GeoIPJSON.cpp
|
|
|
|
geoip/Handler.cpp
|
|
|
|
|
2019-05-10 12:45:54 +02:00
|
|
|
# Locale-data service
|
2020-09-03 20:15:28 +02:00
|
|
|
locale/Global.cpp
|
2019-05-10 17:46:20 +02:00
|
|
|
locale/Label.cpp
|
|
|
|
locale/LabelModel.cpp
|
2019-05-10 12:45:54 +02:00
|
|
|
locale/Lookup.cpp
|
2019-11-26 11:19:30 +01:00
|
|
|
locale/TimeZone.cpp
|
2019-08-04 22:56:41 +02:00
|
|
|
locale/TranslatableConfiguration.cpp
|
2020-08-05 17:52:41 +02:00
|
|
|
locale/TranslatableString.cpp
|
2019-05-10 14:04:36 +02:00
|
|
|
|
2020-01-24 22:53:14 +01:00
|
|
|
# Modules
|
2021-03-12 13:49:37 +01:00
|
|
|
modulesystem/Config.cpp
|
2020-08-11 20:15:14 +02:00
|
|
|
modulesystem/Descriptor.cpp
|
2020-01-24 22:53:14 +01:00
|
|
|
modulesystem/InstanceKey.cpp
|
2020-03-31 22:56:42 +02:00
|
|
|
modulesystem/Module.cpp
|
2021-03-12 13:16:36 +01:00
|
|
|
modulesystem/Preset.cpp
|
2020-03-31 23:13:13 +02:00
|
|
|
modulesystem/RequirementsChecker.cpp
|
2020-04-02 21:33:07 +02:00
|
|
|
modulesystem/RequirementsModel.cpp
|
2020-01-29 16:03:50 +01:00
|
|
|
|
2019-08-20 15:25:37 +02:00
|
|
|
# Network service
|
|
|
|
network/Manager.cpp
|
|
|
|
|
2021-03-16 13:50:15 +01:00
|
|
|
# Packages service
|
|
|
|
packages/Globals.cpp
|
|
|
|
|
2019-05-10 12:45:54 +02:00
|
|
|
# Partition service
|
2021-02-08 11:13:49 +01:00
|
|
|
partition/Global.cpp
|
2019-06-20 11:35:46 +02:00
|
|
|
partition/Mount.cpp
|
2019-05-08 19:23:07 +02:00
|
|
|
partition/PartitionSize.cpp
|
2019-06-19 12:14:49 +02:00
|
|
|
partition/Sync.cpp
|
2019-05-10 12:45:54 +02:00
|
|
|
|
|
|
|
# Utility service
|
2014-07-29 20:18:02 +02:00
|
|
|
utils/CalamaresUtilsSystem.cpp
|
2018-01-15 11:59:44 +01:00
|
|
|
utils/CommandList.cpp
|
2019-04-29 12:22:24 +02:00
|
|
|
utils/Dirs.cpp
|
2020-01-29 16:03:50 +01:00
|
|
|
utils/Entropy.cpp
|
2014-06-18 18:05:04 +02:00
|
|
|
utils/Logger.cpp
|
2020-06-22 22:32:47 +02:00
|
|
|
utils/Permissions.cpp
|
2019-08-12 15:52:59 +02:00
|
|
|
utils/PluginFactory.cpp
|
2014-11-11 12:42:37 +01:00
|
|
|
utils/Retranslator.cpp
|
2019-04-29 12:48:01 +02:00
|
|
|
utils/String.cpp
|
2019-07-02 22:08:36 +02:00
|
|
|
utils/UMask.cpp
|
2019-04-29 11:36:04 +02:00
|
|
|
utils/Variant.cpp
|
2019-04-29 12:04:55 +02:00
|
|
|
utils/Yaml.cpp
|
2014-06-04 16:35:26 +02:00
|
|
|
)
|
2014-07-16 16:07:32 +02:00
|
|
|
|
2020-12-22 16:05:20 +01:00
|
|
|
### OPTIONAL Automount support (requires dbus)
|
|
|
|
#
|
|
|
|
#
|
|
|
|
if( Qt5DBus_FOUND)
|
|
|
|
list( APPEND libSources partition/AutoMount.cpp )
|
|
|
|
list( APPEND OPTIONAL_PRIVATE_LIBRARIES Qt5::DBus )
|
|
|
|
endif()
|
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
### OPTIONAL Python support
|
|
|
|
#
|
|
|
|
#
|
2014-07-16 16:07:32 +02:00
|
|
|
if( WITH_PYTHON )
|
2019-05-10 14:04:36 +02:00
|
|
|
list( APPEND libSources
|
2014-07-18 14:27:59 +02:00
|
|
|
PythonHelper.cpp
|
2014-07-16 16:07:32 +02:00
|
|
|
PythonJob.cpp
|
2014-07-17 17:52:02 +02:00
|
|
|
PythonJobApi.cpp
|
2014-07-16 16:07:32 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(${PYTHON_INCLUDE_DIRS})
|
|
|
|
link_directories(${PYTHON_LIBRARIES})
|
|
|
|
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
list( APPEND OPTIONAL_PRIVATE_LIBRARIES
|
2014-07-16 16:07:32 +02:00
|
|
|
${PYTHON_LIBRARIES}
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
### OPTIONAL GeoIP XML support
|
|
|
|
#
|
|
|
|
#
|
2019-04-30 22:53:26 +02:00
|
|
|
find_package(Qt5 COMPONENTS Xml)
|
|
|
|
if( Qt5Xml_FOUND )
|
2019-05-10 14:04:36 +02:00
|
|
|
list( APPEND libSources geoip/GeoIPXML.cpp )
|
2019-05-10 16:57:50 +02:00
|
|
|
list( APPEND OPTIONAL_PUBLIC_LIBRARIES Qt5::Network Qt5::Xml )
|
2019-04-30 22:53:26 +02:00
|
|
|
endif()
|
|
|
|
|
2019-06-13 12:12:47 +02:00
|
|
|
### OPTIONAL KPMcore support
|
|
|
|
#
|
|
|
|
#
|
2020-10-07 00:11:18 +02:00
|
|
|
include( KPMcoreHelper )
|
2019-06-13 12:12:47 +02:00
|
|
|
|
|
|
|
if ( KPMcore_FOUND )
|
|
|
|
find_package( Qt5 REQUIRED DBus ) # Needed for KPMCore
|
|
|
|
find_package( KF5 REQUIRED I18n WidgetsAddons ) # Needed for KPMCore
|
|
|
|
|
2020-10-07 01:15:12 +02:00
|
|
|
foreach ( d ${KPMcore_API_DEFINITIONS} )
|
|
|
|
add_definitions( -D${d} )
|
|
|
|
endforeach()
|
2019-06-13 12:12:47 +02:00
|
|
|
include_directories( ${KPMCORE_INCLUDE_DIR} )
|
|
|
|
list( APPEND libSources
|
2019-06-13 14:55:43 +02:00
|
|
|
partition/FileSystem.cpp
|
2019-06-13 21:40:34 +02:00
|
|
|
partition/KPMManager.cpp
|
2019-06-13 12:12:47 +02:00
|
|
|
partition/PartitionIterator.cpp
|
2019-06-13 14:41:33 +02:00
|
|
|
partition/PartitionQuery.cpp
|
2019-06-13 12:12:47 +02:00
|
|
|
)
|
|
|
|
list( APPEND OPTIONAL_PRIVATE_LIBRARIES kpmcore )
|
|
|
|
endif()
|
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
### LIBRARY
|
|
|
|
#
|
|
|
|
#
|
2020-05-14 11:15:23 +02:00
|
|
|
add_library( calamares SHARED ${libSources} )
|
2014-07-17 17:52:02 +02:00
|
|
|
set_target_properties( calamares
|
2014-06-04 18:19:05 +02:00
|
|
|
PROPERTIES
|
2018-03-01 12:37:52 +01:00
|
|
|
VERSION ${CALAMARES_VERSION_SHORT}
|
|
|
|
SOVERSION ${CALAMARES_VERSION_SHORT}
|
2020-06-10 02:01:59 +02:00
|
|
|
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_INSTALL_FULL_INCLUDEDIR}/libcalamares
|
2014-06-04 16:35:26 +02:00
|
|
|
)
|
2019-04-17 12:19:12 +02:00
|
|
|
calamares_automoc( calamares )
|
2014-06-04 16:35:26 +02:00
|
|
|
|
2014-07-17 17:52:02 +02:00
|
|
|
target_link_libraries( calamares
|
2018-04-05 10:31:13 +02:00
|
|
|
LINK_PRIVATE
|
|
|
|
${OPTIONAL_PRIVATE_LIBRARIES}
|
2020-06-10 02:27:57 +02:00
|
|
|
LINK_PUBLIC
|
2020-10-23 12:01:29 +02:00
|
|
|
yamlcpp
|
2018-04-05 10:31:13 +02:00
|
|
|
Qt5::Core
|
2019-08-08 14:31:25 +02:00
|
|
|
KF5::CoreAddons
|
2019-05-10 16:57:50 +02:00
|
|
|
${OPTIONAL_PUBLIC_LIBRARIES}
|
2014-06-04 16:35:26 +02:00
|
|
|
)
|
|
|
|
|
2020-06-10 16:43:34 +02:00
|
|
|
### Installation
|
|
|
|
#
|
|
|
|
#
|
2014-07-17 17:52:02 +02:00
|
|
|
install( TARGETS calamares
|
2020-06-10 00:31:13 +02:00
|
|
|
EXPORT Calamares
|
2018-03-01 12:37:52 +01:00
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
2018-02-19 10:23:56 +01:00
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
2014-06-04 16:35:26 +02:00
|
|
|
)
|
|
|
|
|
2018-03-01 12:37:52 +01:00
|
|
|
# Make symlink lib/calamares/libcalamares.so to lib/libcalamares.so.VERSION so
|
|
|
|
# lib/calamares can be used as module path for the Python interpreter.
|
|
|
|
install( CODE "
|
|
|
|
file( MAKE_DIRECTORY \"\$ENV{DESTDIR}/${CMAKE_INSTALL_FULL_LIBDIR}/calamares\" )
|
|
|
|
execute_process( COMMAND \"${CMAKE_COMMAND}\" -E create_symlink ../libcalamares.so.${CALAMARES_VERSION_SHORT} libcalamares.so WORKING_DIRECTORY \"\$ENV{DESTDIR}/${CMAKE_INSTALL_FULL_LIBDIR}/calamares\" )
|
|
|
|
")
|
|
|
|
|
2014-06-04 16:35:26 +02:00
|
|
|
# Install header files
|
|
|
|
file( GLOB rootHeaders "*.h" )
|
2020-06-10 02:10:21 +02:00
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/CalamaresConfig.h
|
2021-03-22 13:36:52 +01:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersion.h
|
2020-06-10 02:10:21 +02:00
|
|
|
${rootHeaders}
|
|
|
|
DESTINATION include/libcalamares
|
|
|
|
)
|
2020-06-10 16:43:34 +02:00
|
|
|
# Install each subdir-worth of header files
|
2020-06-10 02:10:21 +02:00
|
|
|
foreach( subdir geoip locale modulesystem network partition utils )
|
|
|
|
file( GLOB subdir_headers "${subdir}/*.h" )
|
|
|
|
install( FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir} )
|
|
|
|
endforeach()
|
2019-05-10 14:04:36 +02:00
|
|
|
|
2020-06-10 16:43:34 +02:00
|
|
|
|
2019-05-10 14:04:36 +02:00
|
|
|
### TESTING
|
|
|
|
#
|
|
|
|
#
|
2020-08-07 00:45:36 +02:00
|
|
|
calamares_add_test(
|
|
|
|
libcalamarestest
|
|
|
|
SOURCES
|
|
|
|
Tests.cpp
|
|
|
|
)
|
|
|
|
|
2020-02-17 15:05:00 +01:00
|
|
|
calamares_add_test(
|
2020-08-11 20:19:00 +02:00
|
|
|
libcalamaresgeoiptest
|
2020-02-17 15:05:00 +01:00
|
|
|
SOURCES
|
2020-08-11 20:19:00 +02:00
|
|
|
geoip/GeoIPTests.cpp
|
|
|
|
${geoip_src}
|
2020-02-17 15:05:00 +01:00
|
|
|
)
|
2020-02-07 13:49:06 +01:00
|
|
|
|
2020-02-17 15:05:00 +01:00
|
|
|
calamares_add_test(
|
2020-08-11 20:19:00 +02:00
|
|
|
libcalamareslocaletest
|
2020-02-17 15:05:00 +01:00
|
|
|
SOURCES
|
2020-08-11 20:19:00 +02:00
|
|
|
locale/Tests.cpp
|
2020-02-17 15:05:00 +01:00
|
|
|
)
|
2020-02-07 13:49:06 +01:00
|
|
|
|
2020-02-17 15:05:00 +01:00
|
|
|
calamares_add_test(
|
2020-08-11 20:19:00 +02:00
|
|
|
libcalamaresmodulesystemtest
|
2020-02-17 15:05:00 +01:00
|
|
|
SOURCES
|
2020-08-11 20:19:00 +02:00
|
|
|
modulesystem/Tests.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
calamares_add_test(
|
|
|
|
libcalamaresnetworktest
|
|
|
|
SOURCES
|
|
|
|
network/Tests.cpp
|
2020-02-17 15:05:00 +01:00
|
|
|
)
|
|
|
|
|
2021-03-16 13:50:15 +01:00
|
|
|
calamares_add_test(
|
|
|
|
libcalamarespackagestest
|
|
|
|
SOURCES
|
|
|
|
packages/Tests.cpp
|
|
|
|
)
|
|
|
|
|
2020-02-17 15:05:00 +01:00
|
|
|
calamares_add_test(
|
|
|
|
libcalamarespartitiontest
|
|
|
|
SOURCES
|
|
|
|
partition/Tests.cpp
|
|
|
|
)
|
|
|
|
|
2020-04-22 15:38:42 +02:00
|
|
|
if( KPMcore_FOUND )
|
|
|
|
calamares_add_test(
|
|
|
|
libcalamarespartitionkpmtest
|
|
|
|
SOURCES
|
|
|
|
partition/KPMTests.cpp
|
2020-04-23 11:45:12 +02:00
|
|
|
LIBRARIES
|
|
|
|
${OPTIONAL_PRIVATE_LIBRARIES}
|
2020-04-22 15:38:42 +02:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-02-17 15:05:00 +01:00
|
|
|
calamares_add_test(
|
2020-08-11 20:19:00 +02:00
|
|
|
libcalamaresutilstest
|
2020-02-17 15:05:00 +01:00
|
|
|
SOURCES
|
2020-08-11 20:19:00 +02:00
|
|
|
utils/Tests.cpp
|
2020-02-17 15:05:00 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
calamares_add_test(
|
2020-08-11 20:19:00 +02:00
|
|
|
libcalamaresutilspathstest
|
2020-02-17 15:05:00 +01:00
|
|
|
SOURCES
|
2020-08-11 20:19:00 +02:00
|
|
|
utils/TestPaths.cpp
|
2020-02-17 15:05:00 +01:00
|
|
|
)
|
|
|
|
|
2019-04-30 22:53:26 +02:00
|
|
|
|
2020-04-22 15:38:42 +02:00
|
|
|
# This is not an actual test, it's a test / demo application
|
|
|
|
# for experimenting with GeoIP.
|
|
|
|
add_executable( test_geoip geoip/test_geoip.cpp ${geoip_src} )
|
|
|
|
target_link_libraries( test_geoip calamares Qt5::Network yamlcpp )
|
|
|
|
calamares_automoc( test_geoip )
|
2020-12-22 21:25:00 +01:00
|
|
|
|
|
|
|
if ( Qt5DBus_FOUND )
|
2020-12-22 22:08:23 +01:00
|
|
|
add_executable( test_automount partition/calautomount.cpp )
|
|
|
|
target_link_libraries( test_automount calamares Qt5::DBus )
|
2020-12-22 21:25:00 +01:00
|
|
|
endif()
|