-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a module that contains configure information and it's shared by the other Aurora modules. Closes: #45
- Loading branch information
Showing
6 changed files
with
34 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
liri_add_module(AuroraGlobalPrivate | ||
DESCRIPTION | ||
"Contains configure features shared by Aurora modules" | ||
SOURCES | ||
aurorafeatures.h.in | ||
STATIC | ||
NO_PKGCONFIG | ||
) | ||
|
||
configure_file( | ||
"${CMAKE_CURRENT_SOURCE_DIR}/aurorafeatures.h.in" | ||
"${CMAKE_CURRENT_BINARY_DIR}/aurorafeatures.h" | ||
@ONLY | ||
) | ||
set(_global_header_features "#include <LiriAuroraGlobalPrivate/aurorafeatures.h>") | ||
liri_extend_target(AuroraGlobalPrivate | ||
SOURCES | ||
"${CMAKE_CURRENT_BINARY_DIR}/aurorafeatures.h" | ||
GLOBAL_HEADER_CONTENT | ||
"${_global_header_features}" | ||
) | ||
|
||
liri_finalize_module(AuroraGlobalPrivate) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
The AuroraGlobalPrivate module is a module that contains configure | ||
features, shared by the modules of Aurora. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
// SPDX-FileCopyrightText: 2021 Pier Luigi Fiorini <[email protected]> | ||
// | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
// SPDX-FileCopyrightText: 2023 Pier Luigi Fiorini <[email protected]> | ||
// SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
||
#ifndef LIRIAURORACOMPOSITORFEATURES_H | ||
#define LIRIAURORACOMPOSITORFEATURES_H | ||
#ifndef AURORAFEATURES_H | ||
#define AURORAFEATURES_H | ||
|
||
#cmakedefine01 LIRI_FEATURE_aurora_datadevice | ||
#cmakedefine01 LIRI_FEATURE_aurora_xkbcommon | ||
|
@@ -18,6 +17,4 @@ | |
#cmakedefine01 LIRI_FEATURE_aurora_shm_emulation_server | ||
#cmakedefine01 LIRI_FEATURE_aurora_xwayland | ||
|
||
#include <QtGui/qtgui-config.h> | ||
|
||
#endif // LIRIAURORACOMPOSITORFEATURES_H | ||
#endif // AURORAFEATURES_H |