CMake: apply gersemi formatting
This commit is contained in:
parent
c3f366ce9e
commit
8de565f269
@ -40,7 +40,13 @@ calamares_add_plugin(locale
|
||||
|
||||
calamares_add_test(
|
||||
localetest
|
||||
SOURCES Tests.cpp Config.cpp LocaleConfiguration.cpp LocaleNames.cpp SetTimezoneJob.cpp timezonewidget/TimeZoneImage.cpp
|
||||
SOURCES
|
||||
Tests.cpp
|
||||
Config.cpp
|
||||
LocaleConfiguration.cpp
|
||||
LocaleNames.cpp
|
||||
SetTimezoneJob.cpp
|
||||
timezonewidget/TimeZoneImage.cpp
|
||||
DEFINITIONS SOURCE_DIR="${CMAKE_CURRENT_LIST_DIR}/images" DEBUG_TIMEZONES=1
|
||||
LIBRARIES Qt5::Gui
|
||||
)
|
||||
|
@ -12,9 +12,4 @@ calamares_add_plugin(luksbootkeyfile
|
||||
NO_CONFIG
|
||||
)
|
||||
|
||||
calamares_add_test(
|
||||
luksbootkeyfiletest
|
||||
SOURCES
|
||||
Tests.cpp
|
||||
LuksBootKeyFileJob.cpp
|
||||
)
|
||||
calamares_add_test(luksbootkeyfiletest SOURCES Tests.cpp LuksBootKeyFileJob.cpp)
|
||||
|
@ -18,27 +18,27 @@
|
||||
# modules since the partitions on disk won't match GS, but it can be
|
||||
# useful for debugging simulated installations that don't need to
|
||||
# mount the target filesystems.
|
||||
option( DEBUG_PARTITION_UNSAFE "Allow unsafe partitioning choices." OFF )
|
||||
option( DEBUG_PARTITION_BAIL_OUT "Unsafe partitioning will error out on exec." ON )
|
||||
option( DEBUG_PARTITION_SKIP "Don't actually do any partitioning." OFF)
|
||||
option(DEBUG_PARTITION_UNSAFE "Allow unsafe partitioning choices." OFF)
|
||||
option(DEBUG_PARTITION_BAIL_OUT "Unsafe partitioning will error out on exec." ON)
|
||||
option(DEBUG_PARTITION_SKIP "Don't actually do any partitioning." OFF)
|
||||
|
||||
# This is very chatty, useful mostly if you don't know what KPMCore offers.
|
||||
option(DEBUG_FILESYSTEMS "Log all available Filesystems from KPMCore." OFF)
|
||||
|
||||
include_directories(${CMAKE_SOURCE_DIR}) # For 3rdparty
|
||||
|
||||
set( _partition_defs )
|
||||
if( DEBUG_PARTITION_UNSAFE )
|
||||
if( DEBUG_PARTITION_BAIL_OUT )
|
||||
list( APPEND _partition_defs DEBUG_PARTITION_BAIL_OUT )
|
||||
set(_partition_defs)
|
||||
if(DEBUG_PARTITION_UNSAFE)
|
||||
if(DEBUG_PARTITION_BAIL_OUT)
|
||||
list(APPEND _partition_defs DEBUG_PARTITION_BAIL_OUT)
|
||||
endif()
|
||||
list(APPEND _partition_defs DEBUG_PARTITION_UNSAFE)
|
||||
endif()
|
||||
if(DEBUG_FILESYSTEMS)
|
||||
list(APPEND _partition_defs DEBUG_FILESYSTEMS)
|
||||
endif()
|
||||
if( DEBUG_PARTITION_SKIP )
|
||||
list( APPEND _partition_defs DEBUG_PARTITION_SKIP )
|
||||
if(DEBUG_PARTITION_SKIP)
|
||||
list(APPEND _partition_defs DEBUG_PARTITION_SKIP)
|
||||
endif()
|
||||
|
||||
find_package(ECM ${ECM_VERSION} REQUIRED NO_MODULE)
|
||||
|
Loading…
Reference in New Issue
Block a user