Updated AeroColorMixer, fixed glow behind title bug in smaragd.

This commit is contained in:
wackyideas 2021-08-10 15:11:43 +02:00
parent 7716ac8f08
commit 23ae4c8ded
119 changed files with 12766 additions and 7677 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.15.2, 2021-08-02T21:34:34. -->
<!-- Written by QtCreator 4.15.2, 2021-08-10T14:51:41. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>

View File

@ -253,12 +253,16 @@ void MainWindow::applyChanges()
QString fillOpacityMatch = R"(fill-opacity:(\d*\.?\d+;))";
QString fillMatch = R"(fill:#(?:[0-9a-fA-F]{3}){1,2};)";
//Emerald
QString baseColourMatch = R"(^active_(base|sides)=#(?:[0-9a-fA-F]{3}){1,2})";
QString baseGlowMatch = R"(^active_glow=#(?:[0-9a-fA-F]{3}){1,2})";
QString baseColourAlphaMatch = R"(^active_(base|sides)_alpha=(\d*\.?\d+))";
QString baseGlowAlpha = R"(^active_glow_alpha=(\d*\.?\d+))";
QString inactive_baseColourAlphaMatch = R"(^inactive_(base|sides)_alpha=(\d*\.?\d+))";
QString inactive_baseGlowAlpha = R"(^inactive_glow_alpha=(\d*\.?\d+))";
//left, right, middle, alpha
//baseColourAlphaMatch
//baseGlowAlpha
QString baseGlowMatch = R"(^active_title_(left|right)=#(?:[0-9a-fA-F]{3}){1,2})";
QString baseColourMatch = R"(^active_title_middle=#(?:[0-9a-fA-F]{3}){1,2})";
QString baseGlowAlpha = R"(^active_title_(left|right)_alpha=(\d*\.?\d+))";
QString baseColourAlphaMatch = R"(^active_title_middle_alpha=(\d*\.?\d+))";
QString inactive_baseGlowAlpha = R"(^inactive_title_(left|right)_alpha=(\d*\.?\d+))";
QString inactive_baseColourAlphaMatch = R"(^inactive_title_middle_alpha=(\d*\.?\d+))";
QString inactive_baseGlowMatch = R"(^inactive_title_(left|right)=#(?:[0-9a-fA-F]{3}){1,2})";
QRegularExpression regex(fillOpacityMatch, QRegularExpression::MultilineOption | QRegularExpression::DotMatchesEverythingOption);
int pos = 0;
QStringList matches;
@ -323,15 +327,15 @@ void MainWindow::applyChanges()
QTextStream reader(&f);
reader.setAutoDetectUnicode(true);
QString rawData = "";
QString oxygenSettings = "";
QString vrunnerSettings = "";
bool foundSettings = false;
QString line = "";
while(!foundSettings)
{
line = reader.readLine();
if(line.startsWith("[oxygen_settings]"))
if(line.startsWith("[vrunner_settings]"))
{
oxygenSettings += line + "\n";
vrunnerSettings += line + "\n";
break;
}
rawData += line + "\n";
@ -341,20 +345,24 @@ void MainWindow::applyChanges()
line = reader.readLine();
if(line.startsWith("["))
break;
oxygenSettings += line + "\n";
vrunnerSettings += line + "\n";
}
//Setting colour alpha
getMatches(baseColourAlphaMatch, oxygenSettings);
getMatches(baseColourAlphaMatch, vrunnerSettings);
float baseOpacity = map(ui->alpha_slider->value(), 0, 255, 0.01, 0.75);
float glowOpacity = map(ui->alpha_slider->value(), 0, 255, 0.45, 0.85);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
oxygenSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? QString::number(baseOpacity, 'f', 2) : "1.00"));
vrunnerSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? QString::number(baseOpacity, 'f', 2) : "1.00"));
}
//Setting glow alpha
getMatches(baseGlowAlpha, oxygenSettings);
oxygenSettings.replace(matches[0], "active_glow_alpha=" + (ui->enableTransparency_CheckBox->isChecked() ? QString::number(glowOpacity, 'f', 2) : "1.00"));
getMatches(baseGlowAlpha, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
vrunnerSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? QString::number(glowOpacity, 'f', 2) : "1.00"));
}
//Setting color
QString colorName;
if(ui->enableTransparency_CheckBox->isChecked())
@ -368,27 +376,39 @@ void MainWindow::applyChanges()
tempColor.setHsv(tempColor.hsvHue(), tempColor.hsvSaturation() * mult, tempColor.value());
colorName = tempColor.name(QColor::HexRgb);
}
getMatches(baseColourMatch, oxygenSettings);
getMatches(baseColourMatch, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
oxygenSettings.replace(matches[i], temp[0] + "=" + colorName);
vrunnerSettings.replace(matches[i], temp[0] + "=" + colorName);
}
getMatches(baseGlowMatch, oxygenSettings);
oxygenSettings.replace(matches[0], "active_glow=" + mixColor(QColor(colorName)).name(QColor::HexRgb));
oxygenSettings.replace("in" + matches[0], QString("inactive_glow=") + "#ffffff");
getMatches(inactive_baseColourAlphaMatch, oxygenSettings);
getMatches(baseGlowMatch, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
oxygenSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? "0.25" : "1.00"));
vrunnerSettings.replace(matches[i], temp[0] + "=" + mixColor(QColor(colorName)).name(QColor::HexRgb));
}
getMatches(inactive_baseGlowMatch, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
vrunnerSettings.replace(matches[i], temp[0] + "=" + "#ffffff");
}
getMatches(inactive_baseGlowAlpha, oxygenSettings);
oxygenSettings.replace(matches[0], QString("inactive_glow_alpha=") + (ui->enableTransparency_CheckBox->isChecked() ? "0.40" : "1.00"));
rawData += oxygenSettings;
getMatches(inactive_baseColourAlphaMatch, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
vrunnerSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? "0.25" : "1.00"));
}
getMatches(inactive_baseGlowAlpha, vrunnerSettings);
for(int i = 0; i < matches.length(); i++)
{
QStringList temp = matches[i].split("=");
vrunnerSettings.replace(matches[i], temp[0] + "=" + (ui->enableTransparency_CheckBox->isChecked() ? "0.40" : "1.00"));
}
rawData += vrunnerSettings;
f.seek(0);
f.write(rawData.toStdString().c_str(), rawData.length());
f.close();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 KiB

After

Width:  |  Height:  |  Size: 316 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 649 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -60,12 +60,12 @@ inactive_title_bar=#000000
inactive_title_bar_alpha=0
[oxygen_settings]
active_base=#74b8fc
active_base_alpha=0.32
active_glow=#eff6fc
active_base=#07b0ff
active_base_alpha=0.32000000000000001
active_glow=#e7f7ff
active_glow_alpha=0.62
active_sides=#74b8fc
active_sides_alpha=0.32
active_sides=#07b0ff
active_sides_alpha=0.32000000000000001
active_separator_line=#ffffff
active_separator_line_alpha=0
active_window_halo=#000000
@ -83,7 +83,7 @@ active_contents_shadow_alpha=0.59999999999999998
inactive_base=#e3e3e3
inactive_base_alpha=0.25
inactive_glow=#ffffff
inactive_glow_alpha=0.40
inactive_glow_alpha=0.40000000000000002
inactive_sides=#e2e2e2
inactive_sides_alpha=0.25
inactive_separator_line=#ffffff
@ -207,15 +207,15 @@ bottom_radius=5
[truglass_settings]
active_base=#a1b6cb
active_base_alpha=1
active_base_alpha=0.51000000000000001
active_upper_title_glow=#000000
active_upper_title_glow_alpha=0
active_upper_title_glow_alpha=0.20000000000000001
active_upper_glow=#b0c3d5
active_upper_glow_alpha=1
active_upper_glow_alpha=0.52000000000000002
active_lower_glow=#b0c3d5
active_lower_glow_alpha=1
active_lower_glow_alpha=0.44
active_middle_glow=#000000
active_middle_glow_alpha=0
active_middle_glow_alpha=0.66000000000000003
active_outer_glow=#000000
active_outer_glow_alpha=0
active_separator_line=#ffffff
@ -229,9 +229,9 @@ active_window_shadow_alpha=1
active_contents_halo=#72818f
active_contents_halo_alpha=1
active_contents_highlight=#ffffff
active_contents_highlight_alpha=0
active_contents_highlight_alpha=0.35999999999999999
active_contents_shadow=#ffffff
active_contents_shadow_alpha=0
active_contents_shadow_alpha=0.51000000000000001
inactive_base=#e0e0e0
inactive_base_alpha=1
inactive_upper_title_glow=#000000
@ -258,34 +258,34 @@ inactive_contents_highlight=#ffffff
inactive_contents_highlight_alpha=0
inactive_contents_shadow=#ffffff
inactive_contents_shadow_alpha=0
round_top_left=false
round_top_right=false
round_bottom_left=false
round_bottom_right=false
radius=0
round_top_left=true
round_top_right=true
round_bottom_left=true
round_bottom_right=true
radius=6
glow_height=11
[vrunner_settings]
active_title_left=#ffffff
active_title_left_alpha=0.5
active_title_middle=#5190ff
active_title_middle_alpha=0.29999999999999999
active_title_right=#ffffff
active_title_right_alpha=0.5
active_title_left=#e7f7ff
active_title_left_alpha=0.62
active_title_middle=#07b0ff
active_title_middle_alpha=0.32
active_title_right=#e7f7ff
active_title_right_alpha=0.62
active_color_contrast=1
active_alpha_contrast=1
active_title_notch_position=1
active_curve_offset=100
active_use_glow=false
active_curve_offset=-100
active_use_glow=true
active_glow_inner=#ffffff
active_glow_inner_alpha=0
active_glow_radius=24.600000000000001
active_glow_inner_alpha=0.69999999999999996
active_glow_radius=15.300000000000001
active_separator_line=#202865
active_separator_line_alpha=0
active_window_halo=#000000
active_window_halo_alpha=1
active_window_highlight=#ffffff
active_window_highlight_alpha=0.5
active_window_highlight_alpha=0.48999999999999999
active_window_shadow=#96e0ff
active_window_shadow_alpha=0.69999999999999996
active_contents_halo=#404040
@ -295,19 +295,19 @@ active_contents_highlight_alpha=0.40000000000000002
active_contents_shadow=#ffffff
active_contents_shadow_alpha=0.40000000000000002
inactive_title_left=#ffffff
inactive_title_left_alpha=0.40000000000000002
inactive_title_left_alpha=0.40
inactive_title_middle=#e7e7e7
inactive_title_middle_alpha=0.10000000000000001
inactive_title_middle_alpha=0.25
inactive_title_right=#ffffff
inactive_title_right_alpha=0.40000000000000002
inactive_title_right_alpha=0.40
inactive_color_contrast=1
inactive_alpha_contrast=1
inactive_title_notch_position=1
inactive_curve_offset=100
inactive_use_glow=false
inactive_glow_inner=#4a4a4a
inactive_glow_inner_alpha=0
inactive_glow_radius=10.9
inactive_curve_offset=-100
inactive_use_glow=true
inactive_glow_inner=#ffffff
inactive_glow_inner_alpha=0.40000000000000002
inactive_glow_radius=15.300000000000001
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_halo=#000000
@ -328,6 +328,11 @@ round_bottom_left=true
round_bottom_right=true
radius=6
round_bottom_left=true
round_bottom_right=true
radius=6
[zootreeves_settings]
active_outer=#000000
active_outer_alpha=0
@ -425,7 +430,7 @@ truglass=0.5
pixmap=0.2
[engine]
engine=oxygen
engine=vrunner
[buttons]
use_pixmap_buttons=true

View File

@ -1,5 +1,5 @@
# This is the CMakeCache file.
# For build in directory: /home/boki/Downloads/smaragd-0.1.1/build
# For build in directory: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
@ -231,6 +231,9 @@ CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//The directory containing a CMake configuration file for ECM.
ECM_DIR:PATH=/usr/share/ECM/cmake
//Path to a program.
FISH_EXECUTABLE:FILEPATH=FISH_EXECUTABLE-NOTFOUND
//Path to a program.
GETTEXT_MSGFMT_EXECUTABLE:FILEPATH=/usr/bin/msgfmt
@ -300,12 +303,18 @@ KDE_INSTALL_INFODIR:PATH=
//Java AAR/JAR files for Android (jar)
KDE_INSTALL_JARDIR:PATH=
//KAppTemplate and KDevelop templates (DATAROOTDIR/kdevappwizard/templates)
KDE_INSTALL_KAPPTEMPLATESDIR:PATH=
//kconfig description files (DATAROOTDIR/config.kcfg)
KDE_INSTALL_KCFGDIR:PATH=
//kconf_update scripts (DATAROOTDIR/kconf_update)
KDE_INSTALL_KCONFUPDATEDIR:PATH=
//KDevelop file templates (DATAROOTDIR/kdevfiletemplates/templates)
KDE_INSTALL_KFILETEMPLATESDIR:PATH=
//knotify description files (DATAROOTDIR/knotifications5)
KDE_INSTALL_KNOTIFY5RCDIR:PATH=
@ -315,9 +324,6 @@ KDE_INSTALL_KSERVICES5DIR:PATH=
//service types for KDE Frameworks 5 (DATAROOTDIR/kservicetypes5)
KDE_INSTALL_KSERVICETYPES5DIR:PATH=
//Kapptemplate and Kdevelop templates (DATAROOTDIR/kdevappwizard/templates)
KDE_INSTALL_KTEMPLATESDIR:PATH=
//kxmlgui .rc files (DATAROOTDIR/kxmlgui5)
KDE_INSTALL_KXMLGUI5DIR:PATH=
@ -355,17 +361,17 @@ KDE_INSTALL_PREFIX_SCRIPT:BOOL=OFF
//documentation bundles in QCH format (DATAROOTDIR/doc/qch)
KDE_INSTALL_QCHDIR:PATH=
//QtQuick2 imports (/usr/lib/qt/qml)
//QtQuick2 imports (lib/qt/qml)
KDE_INSTALL_QMLDIR:PATH=
//Qt plugins (/usr/lib/qt/plugins)
//Qt plugins (lib/qt/plugins)
KDE_INSTALL_QTPLUGINDIR:PATH=
//documentation bundles in QCH format for Qt-extending libraries
// (/usr/share/doc/qt)
KDE_INSTALL_QTQCHDIR:PATH=
//QtQuick1 imports (/usr/lib/qt/imports)
//QtQuick1 imports (lib/qt/imports)
KDE_INSTALL_QTQUICKIMPORTSDIR:PATH=
//system admin executables (EXECROOTDIR/sbin)
@ -461,10 +467,13 @@ pkgcfg_lib_PC_GLIB2_glib-2.0:FILEPATH=/usr/lib/libglib-2.0.so
pkgcfg_lib__pc_cairo_cairo:FILEPATH=/usr/lib/libcairo.so
//Value Computed by CMake
smaragd_BINARY_DIR:STATIC=/home/boki/Downloads/smaragd-0.1.1/build
smaragd_BINARY_DIR:STATIC=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build
//Value Computed by CMake
smaragd_SOURCE_DIR:STATIC=/home/boki/Downloads/smaragd-0.1.1
smaragd_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
smaragd_SOURCE_DIR:STATIC=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1
########################
@ -476,13 +485,13 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/boki/Downloads/smaragd-0.1.1/build
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=19
CMAKE_CACHE_MINOR_VERSION:INTERNAL=21
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
@ -553,7 +562,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/boki/Downloads/smaragd-0.1.1
CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_LINKER
@ -585,7 +594,7 @@ CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.19
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.21
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@ -623,15 +632,15 @@ FIND_PACKAGE_MESSAGE_DETAILS_GLIB2:INTERNAL=[/usr/lib/libglib-2.0.so][/usr/inclu
//Details about finding Gettext
FIND_PACKAGE_MESSAGE_DETAILS_Gettext:INTERNAL=[/usr/bin/msgmerge][/usr/bin/msgfmt][v0.21()]
//Details about finding KF5
FIND_PACKAGE_MESSAGE_DETAILS_KF5:INTERNAL=[success][cfound components: Config CoreAddons I18n WidgetsAddons ][v5.76.0()]
FIND_PACKAGE_MESSAGE_DETAILS_KF5:INTERNAL=[success][cfound components: Config CoreAddons I18n WidgetsAddons ][v5.84.0()]
//Details about finding KF5Config
FIND_PACKAGE_MESSAGE_DETAILS_KF5Config:INTERNAL=[/usr/lib64/cmake/KF5Config/KF5ConfigConfig.cmake][v5.76.0()]
FIND_PACKAGE_MESSAGE_DETAILS_KF5Config:INTERNAL=[/usr/lib64/cmake/KF5Config/KF5ConfigConfig.cmake][v5.84.0()]
//Details about finding KF5CoreAddons
FIND_PACKAGE_MESSAGE_DETAILS_KF5CoreAddons:INTERNAL=[/usr/lib64/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake][v5.76.0()]
FIND_PACKAGE_MESSAGE_DETAILS_KF5CoreAddons:INTERNAL=[/usr/lib64/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake][v5.84.0()]
//Details about finding KF5I18n
FIND_PACKAGE_MESSAGE_DETAILS_KF5I18n:INTERNAL=[/usr/lib64/cmake/KF5I18n/KF5I18nConfig.cmake][v5.76.0()]
FIND_PACKAGE_MESSAGE_DETAILS_KF5I18n:INTERNAL=[/usr/lib64/cmake/KF5I18n/KF5I18nConfig.cmake][v5.84.0()]
//Details about finding KF5WidgetsAddons
FIND_PACKAGE_MESSAGE_DETAILS_KF5WidgetsAddons:INTERNAL=[/usr/lib64/cmake/KF5WidgetsAddons/KF5WidgetsAddonsConfig.cmake][v5.76.0()]
FIND_PACKAGE_MESSAGE_DETAILS_KF5WidgetsAddons:INTERNAL=[/usr/lib64/cmake/KF5WidgetsAddons/KF5WidgetsAddonsConfig.cmake][v5.84.0()]
//Details about finding PkgConfig
FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.7.3()]
//ADVANCED property for variable: GLIB2_INCLUDE_DIRS
@ -676,18 +685,20 @@ KDE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
KDE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_JARDIR
KDE_INSTALL_JARDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KAPPTEMPLATESDIR
KDE_INSTALL_KAPPTEMPLATESDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KCFGDIR
KDE_INSTALL_KCFGDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KCONFUPDATEDIR
KDE_INSTALL_KCONFUPDATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KFILETEMPLATESDIR
KDE_INSTALL_KFILETEMPLATESDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KNOTIFY5RCDIR
KDE_INSTALL_KNOTIFY5RCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KSERVICES5DIR
KDE_INSTALL_KSERVICES5DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KSERVICETYPES5DIR
KDE_INSTALL_KSERVICETYPES5DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KTEMPLATESDIR
KDE_INSTALL_KTEMPLATESDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_KXMLGUI5DIR
KDE_INSTALL_KXMLGUI5DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KDE_INSTALL_LIBDIR
@ -757,16 +768,16 @@ PC_GLIB2_STATIC_CFLAGS:INTERNAL=-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/incl
PC_GLIB2_STATIC_CFLAGS_I:INTERNAL=
PC_GLIB2_STATIC_CFLAGS_OTHER:INTERNAL=
PC_GLIB2_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/glib-2.0;/usr/lib/glib-2.0/include
PC_GLIB2_STATIC_LDFLAGS:INTERNAL=-lglib-2.0;-pthread;-lpcre;-pthread
PC_GLIB2_STATIC_LDFLAGS:INTERNAL=-lglib-2.0;-pthread;-lm;-lpcre;-pthread
PC_GLIB2_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread
PC_GLIB2_STATIC_LIBDIR:INTERNAL=
PC_GLIB2_STATIC_LIBRARIES:INTERNAL=glib-2.0;pcre
PC_GLIB2_STATIC_LIBRARIES:INTERNAL=glib-2.0;m;pcre
PC_GLIB2_STATIC_LIBRARY_DIRS:INTERNAL=
PC_GLIB2_STATIC_LIBS:INTERNAL=
PC_GLIB2_STATIC_LIBS_L:INTERNAL=
PC_GLIB2_STATIC_LIBS_OTHER:INTERNAL=
PC_GLIB2_STATIC_LIBS_PATHS:INTERNAL=
PC_GLIB2_VERSION:INTERNAL=2.66.2
PC_GLIB2_VERSION:INTERNAL=2.68.3
PC_GLIB2_glib-2.0_INCLUDEDIR:INTERNAL=
PC_GLIB2_glib-2.0_LIBDIR:INTERNAL=
PC_GLIB2_glib-2.0_PREFIX:INTERNAL=
@ -779,12 +790,12 @@ __pkg_config_arguments_PC_GLIB2:INTERNAL=QUIET;glib-2.0
__pkg_config_arguments__pc_cairo:INTERNAL=cairo
__pkg_config_checked_PC_GLIB2:INTERNAL=1
__pkg_config_checked__pc_cairo:INTERNAL=1
_pc_cairo_CFLAGS:INTERNAL=-I/usr/include/cairo;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/pixman-1;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/harfbuzz
_pc_cairo_CFLAGS:INTERNAL=-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/libpng16;-I/usr/include/freetype2;-I/usr/include/harfbuzz;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/pixman-1
_pc_cairo_CFLAGS_I:INTERNAL=
_pc_cairo_CFLAGS_OTHER:INTERNAL=
_pc_cairo_FOUND:INTERNAL=1
_pc_cairo_INCLUDEDIR:INTERNAL=/usr/include
_pc_cairo_INCLUDE_DIRS:INTERNAL=/usr/include/cairo;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz
_pc_cairo_INCLUDE_DIRS:INTERNAL=/usr/include/cairo;/usr/include/lzo;/usr/include/libpng16;/usr/include/freetype2;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/pixman-1
_pc_cairo_LDFLAGS:INTERNAL=-lcairo
_pc_cairo_LDFLAGS_OTHER:INTERNAL=
_pc_cairo_LIBDIR:INTERNAL=/usr/lib
@ -796,20 +807,20 @@ _pc_cairo_LIBS_OTHER:INTERNAL=
_pc_cairo_LIBS_PATHS:INTERNAL=
_pc_cairo_MODULE_NAME:INTERNAL=cairo
_pc_cairo_PREFIX:INTERNAL=/usr
_pc_cairo_STATIC_CFLAGS:INTERNAL=-I/usr/include/cairo;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/pixman-1;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/harfbuzz
_pc_cairo_STATIC_CFLAGS:INTERNAL=-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/libpng16;-I/usr/include/freetype2;-I/usr/include/harfbuzz;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/pixman-1
_pc_cairo_STATIC_CFLAGS_I:INTERNAL=
_pc_cairo_STATIC_CFLAGS_OTHER:INTERNAL=
_pc_cairo_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/cairo;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/pixman-1;/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz
_pc_cairo_STATIC_LDFLAGS:INTERNAL=-lcairo;-lz;-lz;-lz;-lgobject-2.0;-pthread;-lpcre;-pthread;-L/usr/lib/../lib;-lffi;-pthread;-lpcre;-pthread;-lpixman-1;-lm;-pthread;-lfontconfig;-lbz2;-lz;-lm;-lm;-lz;-pthread;-lm;-lgraphite2;-pthread;-lpcre;-pthread;-lexpat;-lfreetype;-lbz2;-lz;-lm;-lm;-lz;-lharfbuzz;-pthread;-lm;-lgraphite2;-lglib-2.0;-pthread;-lpcre;-pthread;-lpng16;-lm;-lm;-lz;-lxcb-shm;-lXau;-lxcb;-lXau;-lxcb-render;-lxcb;-lXau;-lXrender;-lX11;-lpthread;-lxcb;-lXau;-lpthread;-lxcb;-lXau;-lX11;-lpthread;-lxcb;-lXau;-lXext;-lX11;-lpthread;-lxcb;-lXau;-lXdmcp
_pc_cairo_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread
_pc_cairo_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/cairo;/usr/include/lzo;/usr/include/libpng16;/usr/include/freetype2;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/pixman-1
_pc_cairo_STATIC_LDFLAGS:INTERNAL=-lcairo;-lm;-ldl;-llzo2;-lz;-lm;-lm;-lz;-lfontconfig;-pthread;-lfreetype;-lbz2;-lz;-lm;-lm;-lz;-pthread;-lm;-lgraphite2;-pthread;-lm;-lpcre;-pthread;-lexpat;-lfreetype;-lbz2;-lz;-lpng16;-lm;-lm;-lz;-lharfbuzz;-pthread;-lm;-lgraphite2;-lglib-2.0;-pthread;-lm;-lpcre;-pthread;-lX11;-lpthread;-lxcb;-lXau;-lXext;-lpthread;-lxcb;-lXau;-lXrender;-lX11;-lpthread;-lxcb;-lXau;-lX11;-lpthread;-lXau;-lxcb;-lXau;-lxcb-render;-lxcb;-lXau;-lxcb-shm;-lxcb;-lXau;-lXdmcp;-lpixman-1;-lm;-pthread
_pc_cairo_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread
_pc_cairo_STATIC_LIBDIR:INTERNAL=
_pc_cairo_STATIC_LIBRARIES:INTERNAL=cairo;z;z;z;gobject-2.0;pcre;ffi;pcre;pixman-1;m;fontconfig;bz2;z;m;m;z;m;graphite2;pcre;expat;freetype;bz2;z;m;m;z;harfbuzz;m;graphite2;glib-2.0;pcre;png16;m;m;z;xcb-shm;Xau;xcb;Xau;xcb-render;xcb;Xau;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xext;X11;pthread;xcb;Xau;Xdmcp
_pc_cairo_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/../lib
_pc_cairo_STATIC_LIBRARIES:INTERNAL=cairo;m;dl;lzo2;z;m;m;z;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;expat;freetype;bz2;z;png16;m;m;z;harfbuzz;m;graphite2;glib-2.0;m;pcre;X11;pthread;xcb;Xau;Xext;pthread;xcb;Xau;Xrender;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb-render;xcb;Xau;xcb-shm;xcb;Xau;Xdmcp;pixman-1;m
_pc_cairo_STATIC_LIBRARY_DIRS:INTERNAL=
_pc_cairo_STATIC_LIBS:INTERNAL=
_pc_cairo_STATIC_LIBS_L:INTERNAL=
_pc_cairo_STATIC_LIBS_OTHER:INTERNAL=
_pc_cairo_STATIC_LIBS_PATHS:INTERNAL=
_pc_cairo_VERSION:INTERNAL=1.17.3
_pc_cairo_VERSION:INTERNAL=1.17.4
_pc_cairo_cairo_INCLUDEDIR:INTERNAL=
_pc_cairo_cairo_LIBDIR:INTERNAL=
_pc_cairo_cairo_PREFIX:INTERNAL=

View File

@ -1,14 +1,16 @@
set(CMAKE_C_COMPILER "/usr/bin/cc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "10.2.0")
set(CMAKE_C_COMPILER_VERSION "11.1.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
set(CMAKE_C_PLATFORM_ID "Linux")
set(CMAKE_C_SIMULATE_ID "")
@ -48,6 +50,7 @@ set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "8")
set(CMAKE_C_COMPILER_ABI "ELF")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
@ -71,7 +74,7 @@ endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed;/usr/include")
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed;/usr/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0;/usr/lib;/lib")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0;/usr/lib;/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -1,16 +1,17 @@
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "10.2.0")
set(CMAKE_CXX_COMPILER_VERSION "11.1.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX_PLATFORM_ID "Linux")
set(CMAKE_CXX_SIMULATE_ID "")
@ -43,7 +44,7 @@ if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
@ -60,6 +61,7 @@ set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
@ -83,7 +85,7 @@ endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/10.2.0;/usr/include/c++/10.2.0/x86_64-pc-linux-gnu;/usr/include/c++/10.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed;/usr/include")
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11.1.0;/usr/include/c++/11.1.0/x86_64-pc-linux-gnu;/usr/include/c++/11.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed;/usr/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0;/usr/lib;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0;/usr/lib;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -1,13 +1,13 @@
set(CMAKE_HOST_SYSTEM "Linux-5.4.79-1-lts")
set(CMAKE_HOST_SYSTEM "Linux-5.10.43-1-lts")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.4.79-1-lts")
set(CMAKE_HOST_SYSTEM_VERSION "5.10.43-1-lts")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Linux-5.4.79-1-lts")
set(CMAKE_SYSTEM "Linux-5.10.43-1-lts")
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "5.4.79-1-lts")
set(CMAKE_SYSTEM_VERSION "5.10.43-1-lts")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_CROSSCOMPILING "FALSE")

View File

@ -11,6 +11,12 @@
# define volatile
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
@ -23,16 +29,25 @@
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
@ -52,6 +67,44 @@
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
@ -147,6 +200,14 @@
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
@ -167,8 +228,29 @@
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
@ -225,35 +307,21 @@
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) && defined(__INTEL_DPCPP_COMPILER__)
# define COMPILER_ID "IntelDPCPP"
#elif defined(__clang__) && __has_include(<hip/hip_version.h>)
# define COMPILER_ID "ROCMClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# elif defined(__clang__)
# define SIMULATE_ID "Clang"
# elif defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(__clang__) && __has_include(<hip/hip_version.h>)
# include <hip/hip_version.h>
# define COMPILER_VERSION_MAJOR DEC(HIP_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(HIP_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(HIP_VERSION_PATCH)
# endif
# define COMPILER_VERSION_TWEAK DEC(__INTEL_DPCPP_COMPILER__)
#elif defined(__clang__) && defined(__INTEL_CLANG_COMPILER)
# define COMPILER_ID "IntelClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__INTEL_CLANG_COMPILER)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
@ -313,7 +381,7 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
@ -357,7 +425,7 @@ char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
@ -368,6 +436,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
@ -479,6 +550,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
@ -546,6 +620,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
@ -613,8 +690,12 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
@ -638,6 +719,8 @@ char const info_version_internal[] = {
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
@ -667,13 +750,16 @@ char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__)
# if (defined(_MSC_VER) && !defined(__clang__)) \
|| (defined(__ibmxl__) || defined(__IBMC__))
#if !defined(__STDC__) && !defined(__clang__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ > 201710L
# define C_DIALECT "23"
#elif __STDC_VERSION__ >= 201710L
# define C_DIALECT "17"
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
@ -711,7 +797,7 @@ int main(int argc, char* argv[])
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];

View File

@ -5,6 +5,12 @@
# error "A C compiler has been selected for C++."
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
@ -23,16 +29,25 @@
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
@ -52,6 +67,44 @@
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
@ -147,6 +200,14 @@
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
@ -167,8 +228,29 @@
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
@ -219,35 +301,21 @@
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) && defined(__INTEL_DPCPP_COMPILER__)
# define COMPILER_ID "IntelDPCPP"
#elif defined(__clang__) && __has_include(<hip/hip_version.h>)
# define COMPILER_ID "ROCMClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# elif defined(__clang__)
# define SIMULATE_ID "Clang"
# elif defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(__clang__) && __has_include(<hip/hip_version.h>)
# include <hip/hip_version.h>
# define COMPILER_VERSION_MAJOR DEC(HIP_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(HIP_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(HIP_VERSION_PATCH)
# endif
# define COMPILER_VERSION_TWEAK DEC(__INTEL_DPCPP_COMPILER__)
#elif defined(__clang__) && defined(__INTEL_CLANG_COMPILER)
# define COMPILER_ID "IntelClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__INTEL_CLANG_COMPILER)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
@ -311,7 +379,7 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
@ -342,7 +410,7 @@ char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
@ -353,6 +421,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
@ -464,6 +535,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
@ -531,6 +605,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
@ -598,8 +675,12 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
@ -623,6 +704,8 @@ char const info_version_internal[] = {
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
@ -669,7 +752,9 @@ char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201703L
#if CXX_STD > 202002L
"23"
#elif CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
@ -701,7 +786,7 @@ int main(int argc, char* argv[])
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];

View File

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/boki/Downloads/smaragd-0.1.1")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/boki/Downloads/smaragd-0.1.1/build")
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)

View File

@ -1,4 +1,4 @@
The system is: Linux - 5.4.79-1-lts - x86_64
The system is: Linux - 5.10.43-1-lts - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
@ -10,7 +10,7 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/3.19.1/CompilerIdC/a.out"
The C compiler identification is GNU, found in "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/3.21.0/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
@ -23,142 +23,142 @@ The output was:
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/3.19.1/CompilerIdCXX/a.out"
The CXX compiler identification is GNU, found in "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/3.21.0/CompilerIdCXX/a.out"
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c42a3/fast && /usr/bin/make -f CMakeFiles/cmTC_c42a3.dir/build.make CMakeFiles/cmTC_c42a3.dir/build
make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -v -o CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.19/Modules/CMakeCCompilerABI.c
Run Build Command(s):/usr/bin/make -f Makefile cmTC_9c1c1/fast && /usr/bin/make -f CMakeFiles/cmTC_9c1c1.dir/build.make CMakeFiles/cmTC_9c1c1.dir/build
make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -v -o CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/cc1 -quiet -v /usr/share/cmake-3.19/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccL58jRn.s
GNU C17 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.2.0, GMP version 6.2.0, MPFR version 4.1.0, MPC version 1.1.0, isl version isl-0.21-GMP
gcc version 11.1.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/'
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/cc1 -quiet -v /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_9c1c1.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc133E1E.s
GNU C17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 11.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/include"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include
/usr/local/include
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed
/usr/include
End of search list.
GNU C17 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.2.0, GMP version 6.2.0, MPFR version 4.1.0, MPC version 1.1.0, isl version isl-0.21-GMP
GNU C17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 11.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 81412c83e0c3f5014cd5328f9bc3d624
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o /tmp/ccL58jRn.s
GNU assembler version 2.35.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.35.1
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
Linking C executable cmTC_c42a3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c42a3.dir/link.txt --verbose=1
/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -o cmTC_c42a3
Compiler executable checksum: 3d0ac5c030c008e73f10e8b66957dbfa
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/'
as -v --64 -o CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o /tmp/cc133E1E.s
GNU assembler version 2.36.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.36.1
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.'
Linking C executable cmTC_9c1c1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c1c1.dir/link.txt --verbose=1
/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -o cmTC_9c1c1
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_c42a3' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNHl1SI.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_c42a3 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../.. CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_c42a3' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
gcc version 11.1.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9c1c1' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9c1c1.'
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccbl7nAi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9c1c1 /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../.. CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9c1c1' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9c1c1.'
make[1]: Leaving directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed;/usr/include]
implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed;/usr/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp]
ignore line: [Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_c42a3/fast && /usr/bin/make -f CMakeFiles/cmTC_c42a3.dir/build.make CMakeFiles/cmTC_c42a3.dir/build]
ignore line: [make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.19/Modules/CMakeCCompilerABI.c]
ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_9c1c1/fast && /usr/bin/make -f CMakeFiles/cmTC_9c1c1.dir/build.make CMakeFiles/cmTC_9c1c1.dir/build]
ignore line: [make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.2.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/cc1 -quiet -v /usr/share/cmake-3.19/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccL58jRn.s]
ignore line: [GNU C17 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.0 MPFR version 4.1.0 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: [gcc version 11.1.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/cc1 -quiet -v /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_9c1c1.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc133E1E.s]
ignore line: [GNU C17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 11.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.0 MPFR version 4.1.0 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: [GNU C17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 11.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 81412c83e0c3f5014cd5328f9bc3d624]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o /tmp/ccL58jRn.s]
ignore line: [GNU assembler version 2.35.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.35.1]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [Linking C executable cmTC_c42a3]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c42a3.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -o cmTC_c42a3 ]
ignore line: [Compiler executable checksum: 3d0ac5c030c008e73f10e8b66957dbfa]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o /tmp/cc133E1E.s]
ignore line: [GNU assembler version 2.36.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.36.1]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.']
ignore line: [Linking C executable cmTC_9c1c1]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c1c1.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -o cmTC_9c1c1 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.2.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_c42a3' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNHl1SI.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_c42a3 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../.. CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2] ==> ignore
ignore line: [gcc version 11.1.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9c1c1' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9c1c1.']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccbl7nAi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9c1c1 /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../.. CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccNHl1SI.res] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccbl7nAi.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
@ -174,16 +174,16 @@ Parsed C implicit link information from above output:
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-o] ==> ignore
arg [cmTC_c42a3] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib]
arg [cmTC_9c1c1] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..]
arg [CMakeFiles/cmTC_c42a3.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..]
arg [CMakeFiles/cmTC_9c1c1.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
@ -195,164 +195,168 @@ Parsed C implicit link information from above output:
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib] ==> [/usr/lib]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0;/usr/lib;/lib]
implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o;/usr/lib/crtn.o]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0;/usr/lib;/lib]
implicit fwks: []
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_9af06/fast && /usr/bin/make -f CMakeFiles/cmTC_9af06.dir/build.make CMakeFiles/cmTC_9af06.dir/build
make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_33331/fast && /usr/bin/make -f CMakeFiles/cmTC_33331.dir/build.make CMakeFiles/cmTC_33331.dir/build
make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/cct7Y6Kd.s
GNU C++14 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.2.0, GMP version 6.2.0, MPFR version 4.1.0, MPC version 1.1.0, isl version isl-0.21-GMP
gcc version 11.1.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/'
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_33331.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccGTxn04.s
GNU C++17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 11.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/include"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/x86_64-pc-linux-gnu
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/backward
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/x86_64-pc-linux-gnu
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/backward
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include
/usr/local/include
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed
/usr/include
End of search list.
GNU C++14 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.2.0, GMP version 6.2.0, MPFR version 4.1.0, MPC version 1.1.0, isl version isl-0.21-GMP
GNU C++17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 11.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 281d2a5dec9cafa694fa91c92d7d5e51
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o /tmp/cct7Y6Kd.s
GNU assembler version 2.35.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.35.1
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_9af06
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9af06.dir/link.txt --verbose=1
/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9af06
Compiler executable checksum: 45eb9a71cc15bfdc579557bea4b77e51
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/'
as -v --64 -o CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccGTxn04.s
GNU assembler version 2.36.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.36.1
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.'
Linking CXX executable cmTC_33331
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_33331.dir/link.txt --verbose=1
/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_33331
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9af06' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNVHDvx.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9af06 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../.. CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9af06' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
gcc version 11.1.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_33331' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_33331.'
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccl7Za8I.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_33331 /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../.. CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_33331' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_33331.'
make[1]: Leaving directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/x86_64-pc-linux-gnu]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/backward]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/x86_64-pc-linux-gnu]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/backward]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0] ==> [/usr/include/c++/10.2.0]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/10.2.0/x86_64-pc-linux-gnu]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/backward] ==> [/usr/include/c++/10.2.0/backward]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0] ==> [/usr/include/c++/11.1.0]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/11.1.0/x86_64-pc-linux-gnu]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/backward] ==> [/usr/include/c++/11.1.0/backward]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/10.2.0;/usr/include/c++/10.2.0/x86_64-pc-linux-gnu;/usr/include/c++/10.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed;/usr/include]
implicit include dirs: [/usr/include/c++/11.1.0;/usr/include/c++/11.1.0/x86_64-pc-linux-gnu;/usr/include/c++/11.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp]
ignore line: [Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_9af06/fast && /usr/bin/make -f CMakeFiles/cmTC_9af06.dir/build.make CMakeFiles/cmTC_9af06.dir/build]
ignore line: [make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_33331/fast && /usr/bin/make -f CMakeFiles/cmTC_33331.dir/build.make CMakeFiles/cmTC_33331.dir/build]
ignore line: [make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.2.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/cct7Y6Kd.s]
ignore line: [GNU C++14 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.0 MPFR version 4.1.0 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: [gcc version 11.1.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_33331.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccGTxn04.s]
ignore line: [GNU C++17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 11.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/x86_64-pc-linux-gnu]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../include/c++/10.2.0/backward]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/x86_64-pc-linux-gnu]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../include/c++/11.1.0/backward]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (GCC) version 10.2.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.0 MPFR version 4.1.0 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: [GNU C++17 (GCC) version 11.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 11.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 281d2a5dec9cafa694fa91c92d7d5e51]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o /tmp/cct7Y6Kd.s]
ignore line: [GNU assembler version 2.35.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.35.1]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_9af06]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9af06.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9af06 ]
ignore line: [Compiler executable checksum: 45eb9a71cc15bfdc579557bea4b77e51]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccGTxn04.s]
ignore line: [GNU assembler version 2.36.1 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.36.1]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [Linking CXX executable cmTC_33331]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_33331.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_33331 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.2.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9af06' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNVHDvx.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9af06 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../.. CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/collect2] ==> ignore
ignore line: [gcc version 11.1.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_33331' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_33331.']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccl7Za8I.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_33331 /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../.. CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccNVHDvx.res] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccl7Za8I.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
@ -368,16 +372,16 @@ Parsed CXX implicit link information from above output:
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-o] ==> ignore
arg [cmTC_9af06] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib]
arg [cmTC_33331] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..]
arg [CMakeFiles/cmTC_9af06.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..]
arg [CMakeFiles/cmTC_33331.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
@ -385,32 +389,36 @@ Parsed CXX implicit link information from above output:
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../lib] ==> [/usr/lib]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o]
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../..] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0;/usr/lib;/lib]
implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/crtendS.o;/usr/lib/crtn.o]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0;/usr/lib;/lib]
implicit fwks: []
Determining if the __GLIBC__ exist passed with the following output:
Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3c8d1/fast && /usr/bin/make -f CMakeFiles/cmTC_3c8d1.dir/build.make CMakeFiles/cmTC_3c8d1.dir/build
make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3c8d1.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_3c8d1.dir/CheckSymbolExists.c.o -c /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_3c8d1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3c8d1.dir/link.txt --verbose=1
/usr/bin/cc -rdynamic CMakeFiles/cmTC_3c8d1.dir/CheckSymbolExists.c.o -o cmTC_3c8d1
make[1]: Leaving directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Run Build Command(s):/usr/bin/make -f Makefile cmTC_04032/fast && /usr/bin/make -f CMakeFiles/cmTC_04032.dir/build.make CMakeFiles/cmTC_04032.dir/build
make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_04032.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_04032.dir/CheckSymbolExists.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c"
Linking C executable cmTC_04032
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_04032.dir/link.txt --verbose=1
/usr/bin/cc -rdynamic CMakeFiles/cmTC_04032.dir/CheckSymbolExists.c.o -o cmTC_04032
make[1]: Leaving directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
File /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
File /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdlib.h>
@ -425,16 +433,16 @@ int main(int argc, char** argv)
#endif
}
Performing C++ SOURCE FILE Test _OFFT_IS_64BIT succeeded with the following output:
Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b4d1f/fast && /usr/bin/make -f CMakeFiles/cmTC_b4d1f.dir/build.make CMakeFiles/cmTC_b4d1f.dir/build
make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_b4d1f.dir/src.cxx.o
/usr/bin/c++ -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -D_OFFT_IS_64BIT -o CMakeFiles/cmTC_b4d1f.dir/src.cxx.o -c /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_b4d1f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b4d1f.dir/link.txt --verbose=1
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_b4d1f.dir/src.cxx.o -o cmTC_b4d1f
make[1]: Leaving directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Run Build Command(s):/usr/bin/make -f Makefile cmTC_61bcf/fast && /usr/bin/make -f CMakeFiles/cmTC_61bcf.dir/build.make CMakeFiles/cmTC_61bcf.dir/build
make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_61bcf.dir/src.cxx.o
/usr/bin/c++ -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -D_OFFT_IS_64BIT -o CMakeFiles/cmTC_61bcf.dir/src.cxx.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/src.cxx"
Linking CXX executable cmTC_61bcf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61bcf.dir/link.txt --verbose=1
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_61bcf.dir/src.cxx.o -o cmTC_61bcf
make[1]: Leaving directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Source file was:
@ -449,16 +457,16 @@ Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_DATE_TIME succeeded with the following output:
Change Dir: /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Change Dir: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_eb80c/fast && /usr/bin/make -f CMakeFiles/cmTC_eb80c.dir/build.make CMakeFiles/cmTC_eb80c.dir/build
make[1]: Entering directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_eb80c.dir/src.cxx.o
/usr/bin/c++ -DHAVE_DATE_TIME -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -Wdate-time -o CMakeFiles/cmTC_eb80c.dir/src.cxx.o -c /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_eb80c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eb80c.dir/link.txt --verbose=1
/usr/bin/c++ -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -rdynamic CMakeFiles/cmTC_eb80c.dir/src.cxx.o -o cmTC_eb80c
make[1]: Leaving directory '/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Run Build Command(s):/usr/bin/make -f Makefile cmTC_16e2a/fast && /usr/bin/make -f CMakeFiles/cmTC_16e2a.dir/build.make CMakeFiles/cmTC_16e2a.dir/build
make[1]: Entering directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_16e2a.dir/src.cxx.o
/usr/bin/c++ -DHAVE_DATE_TIME -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -Wdate-time -o CMakeFiles/cmTC_16e2a.dir/src.cxx.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp/src.cxx"
Linking CXX executable cmTC_16e2a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_16e2a.dir/link.txt --verbose=1
/usr/bin/c++ -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -rdynamic CMakeFiles/cmTC_16e2a.dir/src.cxx.o -o cmTC_16e2a
make[1]: Leaving directory '/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/CMakeTmp'
Source file was:

View File

@ -1,6 +1,6 @@
# Hashes of file build rules.
3535d0da715ea9be3eb70bdda9db5496 CMakeFiles/fetch-translations
ae247766cf1d0ecbee4b40f43ce76102 CMakeFiles/uninstall
5aa3b3ab6ab6ac6c3e6fc66260b6eb74 releaseme
66d3c05dd4f05118c4098be966aeff2c src/CMakeFiles/kwin_smaragd_autogen
4f10c3c069349cb9ba174ca614ffbb64 src/ui_kwin_smaragd_dialog.h
149cd34d977a93062ef2b912753c9ff3 CMakeFiles/fetch-translations
87a7da22fdf6a25391d019a1a57d487c CMakeFiles/uninstall
57e7dee61a1a8818e567aa8d274fd01a releaseme
a4a4c50e971ebdda3f501883ce6aa890 src/CMakeFiles/kwin_smaragd_autogen
623095a1d1b5b72d3c168701a7793f51 src/ui_kwin_smaragd_dialog.h

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,23 +53,24 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for KF5Config_QCH.
# Include any custom commands dependencies for this target.
include CMakeFiles/KF5Config_QCH.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/KF5Config_QCH.dir/progress.make
KF5Config_QCH: CMakeFiles/KF5Config_QCH.dir/build.make
.PHONY : KF5Config_QCH
# Rule to build all files generated by this target.
CMakeFiles/KF5Config_QCH.dir/build: KF5Config_QCH
.PHONY : CMakeFiles/KF5Config_QCH.dir/build
CMakeFiles/KF5Config_QCH.dir/clean:
@ -86,6 +78,6 @@ CMakeFiles/KF5Config_QCH.dir/clean:
.PHONY : CMakeFiles/KF5Config_QCH.dir/clean
CMakeFiles/KF5Config_QCH.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5Config_QCH.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5Config_QCH.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/KF5Config_QCH.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for KF5Config_QCH.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for KF5Config_QCH.

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,23 +53,24 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for KF5CoreAddons_QCH.
# Include any custom commands dependencies for this target.
include CMakeFiles/KF5CoreAddons_QCH.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/KF5CoreAddons_QCH.dir/progress.make
KF5CoreAddons_QCH: CMakeFiles/KF5CoreAddons_QCH.dir/build.make
.PHONY : KF5CoreAddons_QCH
# Rule to build all files generated by this target.
CMakeFiles/KF5CoreAddons_QCH.dir/build: KF5CoreAddons_QCH
.PHONY : CMakeFiles/KF5CoreAddons_QCH.dir/build
CMakeFiles/KF5CoreAddons_QCH.dir/clean:
@ -86,6 +78,6 @@ CMakeFiles/KF5CoreAddons_QCH.dir/clean:
.PHONY : CMakeFiles/KF5CoreAddons_QCH.dir/clean
CMakeFiles/KF5CoreAddons_QCH.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5CoreAddons_QCH.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5CoreAddons_QCH.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/KF5CoreAddons_QCH.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for KF5CoreAddons_QCH.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for KF5CoreAddons_QCH.

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,23 +53,24 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for KF5I18n_QCH.
# Include any custom commands dependencies for this target.
include CMakeFiles/KF5I18n_QCH.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/KF5I18n_QCH.dir/progress.make
KF5I18n_QCH: CMakeFiles/KF5I18n_QCH.dir/build.make
.PHONY : KF5I18n_QCH
# Rule to build all files generated by this target.
CMakeFiles/KF5I18n_QCH.dir/build: KF5I18n_QCH
.PHONY : CMakeFiles/KF5I18n_QCH.dir/build
CMakeFiles/KF5I18n_QCH.dir/clean:
@ -86,6 +78,6 @@ CMakeFiles/KF5I18n_QCH.dir/clean:
.PHONY : CMakeFiles/KF5I18n_QCH.dir/clean
CMakeFiles/KF5I18n_QCH.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5I18n_QCH.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5I18n_QCH.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/KF5I18n_QCH.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for KF5I18n_QCH.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for KF5I18n_QCH.

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,23 +53,24 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for KF5WidgetsAddons_QCH.
# Include any custom commands dependencies for this target.
include CMakeFiles/KF5WidgetsAddons_QCH.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/KF5WidgetsAddons_QCH.dir/progress.make
KF5WidgetsAddons_QCH: CMakeFiles/KF5WidgetsAddons_QCH.dir/build.make
.PHONY : KF5WidgetsAddons_QCH
# Rule to build all files generated by this target.
CMakeFiles/KF5WidgetsAddons_QCH.dir/build: KF5WidgetsAddons_QCH
.PHONY : CMakeFiles/KF5WidgetsAddons_QCH.dir/build
CMakeFiles/KF5WidgetsAddons_QCH.dir/clean:
@ -86,6 +78,6 @@ CMakeFiles/KF5WidgetsAddons_QCH.dir/clean:
.PHONY : CMakeFiles/KF5WidgetsAddons_QCH.dir/clean
CMakeFiles/KF5WidgetsAddons_QCH.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5WidgetsAddons_QCH.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5WidgetsAddons_QCH.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/KF5WidgetsAddons_QCH.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for KF5WidgetsAddons_QCH.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for KF5WidgetsAddons_QCH.

View File

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
@ -8,9 +8,9 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"../CMakeLists.txt"
"CMakeFiles/3.19.1/CMakeCCompiler.cmake"
"CMakeFiles/3.19.1/CMakeCXXCompiler.cmake"
"CMakeFiles/3.19.1/CMakeSystem.cmake"
"CMakeFiles/3.21.0/CMakeCCompiler.cmake"
"CMakeFiles/3.21.0/CMakeCXXCompiler.cmake"
"CMakeFiles/3.21.0/CMakeSystem.cmake"
"../cmake/modules/FindCairo.cmake"
"../src/CMakeLists.txt"
"/usr/lib64/cmake/KDecoration2/KDecoration2Config.cmake"
@ -116,107 +116,109 @@ set(CMAKE_MAKEFILE_DEPENDS
"/usr/share/ECM/modules/ECMUninstallTarget.cmake"
"/usr/share/ECM/modules/ECMUseFindModules.cmake"
"/usr/share/ECM/modules/ecm_uninstall.cmake.in"
"/usr/share/cmake-3.19/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.19/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.19/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.19/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.19/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.19/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.19/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.19/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.19/Modules/CMakeConfigurableFile.in"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.19/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.19/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.19/Modules/CMakeFindDependencyMacro.cmake"
"/usr/share/cmake-3.19/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.19/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.19/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.19/Modules/CMakeParseArguments.cmake"
"/usr/share/cmake-3.19/Modules/CMakeParseImplicitIncludeInfo.cmake"
"/usr/share/cmake-3.19/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.19/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.19/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.19/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.19/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.19/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.19/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.19/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.19/Modules/CheckCXXCompilerFlag.cmake"
"/usr/share/cmake-3.19/Modules/CheckCXXSourceCompiles.cmake"
"/usr/share/cmake-3.19/Modules/CheckSymbolExists.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/IntelClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/IntelDPCPP-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.19/Modules/FeatureSummary.cmake"
"/usr/share/cmake-3.19/Modules/FindGettext.cmake"
"/usr/share/cmake-3.19/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.19/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.19/Modules/FindPkgConfig.cmake"
"/usr/share/cmake-3.19/Modules/Internal/CMakeCheckCompilerFlag.cmake"
"/usr/share/cmake-3.19/Modules/Internal/CheckCompilerFlag.cmake"
"/usr/share/cmake-3.19/Modules/Internal/CheckSourceCompiles.cmake"
"/usr/share/cmake-3.19/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.19/Modules/MacroAddFileDependencies.cmake"
"/usr/share/cmake-3.19/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.19/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.19/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.19/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.19/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.19/Modules/Platform/UnixPaths.cmake"
"/usr/share/cmake-3.21/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.21/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.21/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.21/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.21/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.21/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.21/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.21/Modules/CMakeConfigurableFile.in"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.21/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.21/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.21/Modules/CMakeFindDependencyMacro.cmake"
"/usr/share/cmake-3.21/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.21/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.21/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.21/Modules/CMakeParseArguments.cmake"
"/usr/share/cmake-3.21/Modules/CMakeParseImplicitIncludeInfo.cmake"
"/usr/share/cmake-3.21/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.21/Modules/CMakeParseLibraryArchitecture.cmake"
"/usr/share/cmake-3.21/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.21/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.21/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.21/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.21/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.21/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.21/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.21/Modules/CheckCXXCompilerFlag.cmake"
"/usr/share/cmake-3.21/Modules/CheckCXXSourceCompiles.cmake"
"/usr/share/cmake-3.21/Modules/CheckSymbolExists.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/ROCMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.21/Modules/FeatureSummary.cmake"
"/usr/share/cmake-3.21/Modules/FindGettext.cmake"
"/usr/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.21/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.21/Modules/FindPkgConfig.cmake"
"/usr/share/cmake-3.21/Modules/Internal/CheckCompilerFlag.cmake"
"/usr/share/cmake-3.21/Modules/Internal/CheckSourceCompiles.cmake"
"/usr/share/cmake-3.21/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.21/Modules/MacroAddFileDependencies.cmake"
"/usr/share/cmake-3.21/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.21/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.21/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.21/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.21/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.21/Modules/Platform/UnixPaths.cmake"
)
# The corresponding makefile is:
@ -227,11 +229,11 @@ set(CMAKE_MAKEFILE_OUTPUTS
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.19.1/CMakeSystem.cmake"
"CMakeFiles/3.19.1/CMakeCCompiler.cmake"
"CMakeFiles/3.19.1/CMakeCXXCompiler.cmake"
"CMakeFiles/3.19.1/CMakeCCompiler.cmake"
"CMakeFiles/3.19.1/CMakeCXXCompiler.cmake"
"CMakeFiles/3.21.0/CMakeSystem.cmake"
"CMakeFiles/3.21.0/CMakeCCompiler.cmake"
"CMakeFiles/3.21.0/CMakeCXXCompiler.cmake"
"CMakeFiles/3.21.0/CMakeCCompiler.cmake"
"CMakeFiles/3.21.0/CMakeCXXCompiler.cmake"
"prefix.sh"
"ecm_uninstall.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"

View File

@ -1,9 +1,8 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
#=============================================================================
@ -12,30 +11,23 @@ default_target: all
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -44,7 +36,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -63,22 +54,20 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: src/all
.PHONY : all
# The main recursive "preinstall" target.
preinstall: src/preinstall
.PHONY : preinstall
# The main recursive "clean" target.
@ -89,7 +78,6 @@ clean: CMakeFiles/KF5CoreAddons_QCH.dir/clean
clean: CMakeFiles/KF5I18n_QCH.dir/clean
clean: CMakeFiles/KF5Config_QCH.dir/clean
clean: src/clean
.PHONY : clean
#=============================================================================
@ -97,18 +85,15 @@ clean: src/clean
# Recursive "all" directory target.
src/all: src/CMakeFiles/kwin_smaragd.dir/all
.PHONY : src/all
# Recursive "preinstall" directory target.
src/preinstall:
.PHONY : src/preinstall
# Recursive "clean" directory target.
src/clean: src/CMakeFiles/kwin_smaragd.dir/clean
src/clean: src/CMakeFiles/kwin_smaragd_autogen.dir/clean
.PHONY : src/clean
#=============================================================================
@ -118,19 +103,18 @@ src/clean: src/CMakeFiles/kwin_smaragd_autogen.dir/clean
CMakeFiles/fetch-translations.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fetch-translations.dir/build.make CMakeFiles/fetch-translations.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/fetch-translations.dir/build.make CMakeFiles/fetch-translations.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=1,2 "Built target fetch-translations"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=1,2 "Built target fetch-translations"
.PHONY : CMakeFiles/fetch-translations.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/fetch-translations.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 2
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 2
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/fetch-translations.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/fetch-translations.dir/rule
# Convenience name for target.
fetch-translations: CMakeFiles/fetch-translations.dir/rule
.PHONY : fetch-translations
# clean rule for target.
@ -145,19 +129,18 @@ CMakeFiles/fetch-translations.dir/clean:
CMakeFiles/uninstall.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num= "Built target uninstall"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num= "Built target uninstall"
.PHONY : CMakeFiles/uninstall.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/uninstall.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/uninstall.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/uninstall.dir/rule
# Convenience name for target.
uninstall: CMakeFiles/uninstall.dir/rule
.PHONY : uninstall
# clean rule for target.
@ -172,19 +155,18 @@ CMakeFiles/uninstall.dir/clean:
CMakeFiles/KF5WidgetsAddons_QCH.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5WidgetsAddons_QCH.dir/build.make CMakeFiles/KF5WidgetsAddons_QCH.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5WidgetsAddons_QCH.dir/build.make CMakeFiles/KF5WidgetsAddons_QCH.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num= "Built target KF5WidgetsAddons_QCH"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num= "Built target KF5WidgetsAddons_QCH"
.PHONY : CMakeFiles/KF5WidgetsAddons_QCH.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/KF5WidgetsAddons_QCH.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KF5WidgetsAddons_QCH.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/KF5WidgetsAddons_QCH.dir/rule
# Convenience name for target.
KF5WidgetsAddons_QCH: CMakeFiles/KF5WidgetsAddons_QCH.dir/rule
.PHONY : KF5WidgetsAddons_QCH
# clean rule for target.
@ -199,19 +181,18 @@ CMakeFiles/KF5WidgetsAddons_QCH.dir/clean:
CMakeFiles/KF5CoreAddons_QCH.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5CoreAddons_QCH.dir/build.make CMakeFiles/KF5CoreAddons_QCH.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5CoreAddons_QCH.dir/build.make CMakeFiles/KF5CoreAddons_QCH.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num= "Built target KF5CoreAddons_QCH"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num= "Built target KF5CoreAddons_QCH"
.PHONY : CMakeFiles/KF5CoreAddons_QCH.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/KF5CoreAddons_QCH.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KF5CoreAddons_QCH.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/KF5CoreAddons_QCH.dir/rule
# Convenience name for target.
KF5CoreAddons_QCH: CMakeFiles/KF5CoreAddons_QCH.dir/rule
.PHONY : KF5CoreAddons_QCH
# clean rule for target.
@ -226,19 +207,18 @@ CMakeFiles/KF5CoreAddons_QCH.dir/clean:
CMakeFiles/KF5I18n_QCH.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5I18n_QCH.dir/build.make CMakeFiles/KF5I18n_QCH.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5I18n_QCH.dir/build.make CMakeFiles/KF5I18n_QCH.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num= "Built target KF5I18n_QCH"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num= "Built target KF5I18n_QCH"
.PHONY : CMakeFiles/KF5I18n_QCH.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/KF5I18n_QCH.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KF5I18n_QCH.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/KF5I18n_QCH.dir/rule
# Convenience name for target.
KF5I18n_QCH: CMakeFiles/KF5I18n_QCH.dir/rule
.PHONY : KF5I18n_QCH
# clean rule for target.
@ -253,19 +233,18 @@ CMakeFiles/KF5I18n_QCH.dir/clean:
CMakeFiles/KF5Config_QCH.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5Config_QCH.dir/build.make CMakeFiles/KF5Config_QCH.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/KF5Config_QCH.dir/build.make CMakeFiles/KF5Config_QCH.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num= "Built target KF5Config_QCH"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num= "Built target KF5Config_QCH"
.PHONY : CMakeFiles/KF5Config_QCH.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/KF5Config_QCH.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KF5Config_QCH.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : CMakeFiles/KF5Config_QCH.dir/rule
# Convenience name for target.
KF5Config_QCH: CMakeFiles/KF5Config_QCH.dir/rule
.PHONY : KF5Config_QCH
# clean rule for target.
@ -280,19 +259,18 @@ CMakeFiles/KF5Config_QCH.dir/clean:
src/CMakeFiles/kwin_smaragd.dir/all: src/CMakeFiles/kwin_smaragd_autogen.dir/all
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/kwin_smaragd.dir/build.make src/CMakeFiles/kwin_smaragd.dir/depend
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/kwin_smaragd.dir/build.make src/CMakeFiles/kwin_smaragd.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=3,4,5,6,7,8,9,10,11,12,13,14,15,16 "Built target kwin_smaragd"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=3,4,5,6,7,8,9,10,11,12,13,14,15,16 "Built target kwin_smaragd"
.PHONY : src/CMakeFiles/kwin_smaragd.dir/all
# Build rule for subdir invocation for target.
src/CMakeFiles/kwin_smaragd.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 15
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 15
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/kwin_smaragd.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : src/CMakeFiles/kwin_smaragd.dir/rule
# Convenience name for target.
kwin_smaragd: src/CMakeFiles/kwin_smaragd.dir/rule
.PHONY : kwin_smaragd
# clean rule for target.
@ -307,19 +285,18 @@ src/CMakeFiles/kwin_smaragd.dir/clean:
src/CMakeFiles/kwin_smaragd_autogen.dir/all:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/kwin_smaragd_autogen.dir/build.make src/CMakeFiles/kwin_smaragd_autogen.dir/depend
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/kwin_smaragd_autogen.dir/build.make src/CMakeFiles/kwin_smaragd_autogen.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=17 "Built target kwin_smaragd_autogen"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=17 "Built target kwin_smaragd_autogen"
.PHONY : src/CMakeFiles/kwin_smaragd_autogen.dir/all
# Build rule for subdir invocation for target.
src/CMakeFiles/kwin_smaragd_autogen.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 1
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 1
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/kwin_smaragd_autogen.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : src/CMakeFiles/kwin_smaragd_autogen.dir/rule
# Convenience name for target.
kwin_smaragd_autogen: src/CMakeFiles/kwin_smaragd_autogen.dir/rule
.PHONY : kwin_smaragd_autogen
# clean rule for target.

View File

@ -1,22 +1,22 @@
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/install/local.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/edit_cache.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/test.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/fetch-translations.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/uninstall.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5WidgetsAddons_QCH.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/install.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/list_install_components.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/rebuild_cache.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5CoreAddons_QCH.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/install/strip.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5I18n_QCH.dir
/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/KF5Config_QCH.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/install/strip.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/install/local.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/install.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/list_install_components.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/rebuild_cache.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/edit_cache.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/test.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir
/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/install/local.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/edit_cache.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/test.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/fetch-translations.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/uninstall.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5WidgetsAddons_QCH.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/install.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/list_install_components.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/rebuild_cache.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5CoreAddons_QCH.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/install/strip.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5I18n_QCH.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/KF5Config_QCH.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/install/strip.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/install/local.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/install.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/list_install_components.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/rebuild_cache.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/edit_cache.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/test.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,36 +53,37 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for fetch-translations.
# Include any custom commands dependencies for this target.
include CMakeFiles/fetch-translations.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/fetch-translations.dir/progress.make
CMakeFiles/fetch-translations: releaseme
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Downloading translations for smaragd branch trunk..."
git -C /home/boki/Downloads/smaragd-0.1.1/build/releaseme pull
cmake -E remove_directory /home/boki/Downloads/smaragd-0.1.1/build/po
cmake -E remove_directory /home/boki/Downloads/smaragd-0.1.1/build/poqm
ruby /home/boki/Downloads/smaragd-0.1.1/build/releaseme/fetchpo.rb --origin trunk --project smaragd --output-dir /home/boki/Downloads/smaragd-0.1.1/build/po --output-poqm-dir /home/boki/Downloads/smaragd-0.1.1/build/poqm /home/boki/Downloads/smaragd-0.1.1
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Downloading translations for smaragd branch trunk..."
git -C /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/releaseme pull
cmake -E remove_directory /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/po
cmake -E remove_directory /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/poqm
ruby /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/releaseme/fetchpo.rb --origin trunk --project smaragd --output-dir /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/po --output-poqm-dir /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/poqm /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1
releaseme:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Fetching releaseme scripts to download translations..."
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Fetching releaseme scripts to download translations..."
git clone --depth 1 https://invent.kde.org/sdk/releaseme.git
fetch-translations: CMakeFiles/fetch-translations
fetch-translations: releaseme
fetch-translations: CMakeFiles/fetch-translations.dir/build.make
.PHONY : fetch-translations
# Rule to build all files generated by this target.
CMakeFiles/fetch-translations.dir/build: fetch-translations
.PHONY : CMakeFiles/fetch-translations.dir/build
CMakeFiles/fetch-translations.dir/clean:
@ -99,6 +91,6 @@ CMakeFiles/fetch-translations.dir/clean:
.PHONY : CMakeFiles/fetch-translations.dir/clean
CMakeFiles/fetch-translations.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/fetch-translations.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/fetch-translations.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/fetch-translations.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for fetch-translations.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for fetch-translations.

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,27 +53,28 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Utility rule file for uninstall.
# Include any custom commands dependencies for this target.
include CMakeFiles/uninstall.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/uninstall.dir/progress.make
CMakeFiles/uninstall:
/usr/bin/cmake -P /home/boki/Downloads/smaragd-0.1.1/build/ecm_uninstall.cmake
/usr/bin/cmake -P /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/ecm_uninstall.cmake
uninstall: CMakeFiles/uninstall
uninstall: CMakeFiles/uninstall.dir/build.make
.PHONY : uninstall
# Rule to build all files generated by this target.
CMakeFiles/uninstall.dir/build: uninstall
.PHONY : CMakeFiles/uninstall.dir/build
CMakeFiles/uninstall.dir/clean:
@ -90,6 +82,6 @@ CMakeFiles/uninstall.dir/clean:
.PHONY : CMakeFiles/uninstall.dir/clean
CMakeFiles/uninstall.dir/depend:
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles/uninstall.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles/uninstall.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/uninstall.dir/depend

View File

@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for uninstall.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for uninstall.

View File

@ -1,9 +1,9 @@
# CMake generated Testfile for
# Source directory: /home/boki/Downloads/smaragd-0.1.1
# Build directory: /home/boki/Downloads/smaragd-0.1.1/build
# Source directory: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1
# Build directory: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
add_test(appstreamtest "/usr/bin/cmake" "-DAPPSTREAMCLI=/usr/bin/appstreamcli" "-DINSTALL_FILES=/home/boki/Downloads/smaragd-0.1.1/build/install_manifest.txt" "-P" "/usr/share/ECM/kde-modules/appstreamtest.cmake")
set_tests_properties(appstreamtest PROPERTIES _BACKTRACE_TRIPLES "/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;163;add_test;/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;181;appstreamtest;/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;0;;/home/boki/Downloads/smaragd-0.1.1/CMakeLists.txt;20;include;/home/boki/Downloads/smaragd-0.1.1/CMakeLists.txt;0;")
add_test(appstreamtest "/usr/bin/cmake" "-DAPPSTREAMCLI=/usr/bin/appstreamcli" "-DINSTALL_FILES=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/install_manifest.txt" "-P" "/usr/share/ECM/kde-modules/appstreamtest.cmake")
set_tests_properties(appstreamtest PROPERTIES _BACKTRACE_TRIPLES "/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;161;add_test;/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;179;appstreamtest;/usr/share/ECM/kde-modules/KDECMakeSettings.cmake;0;;/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/CMakeLists.txt;20;include;/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/CMakeLists.txt;0;")
subdirs("src")

View File

@ -1,45 +1,36 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -48,7 +39,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -67,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
#=============================================================================
# Targets provided globally by CMake.
@ -95,7 +85,6 @@ edit_cache:
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
@ -106,7 +95,6 @@ test:
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# Special rule for the target install
@ -128,7 +116,6 @@ list_install_components:
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
@ -139,7 +126,6 @@ rebuild_cache:
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target install/strip
@ -156,9 +142,9 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles /home/boki/Downloads/smaragd-0.1.1/build//CMakeFiles/progress.marks
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build//CMakeFiles/progress.marks"
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" 0
.PHONY : all
# The main clean target
@ -168,7 +154,6 @@ clean:
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.

View File

@ -1,5 +0,0 @@
[KNewStuff3]
ProvidersUrl=http://download.kde.org/ocs/providers.xml
Categories=Beryl Emerald Theme,Compiz Theme
Uncompress=never
TargetDir=smaragd/themes

View File

@ -1,4 +1,4 @@
# Install script for directory: /home/boki/Downloads/smaragd-0.1.1
# Install script for directory: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -44,7 +44,7 @@ endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/boki/Downloads/smaragd-0.1.1/build/src/cmake_install.cmake")
include("/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/cmake_install.cmake")
endif()
@ -56,5 +56,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/boki/Downloads/smaragd-0.1.1/build/${CMAKE_INSTALL_MANIFEST}"
file(WRITE "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -1,8 +1,8 @@
if(NOT EXISTS "/home/boki/Downloads/smaragd-0.1.1/build/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: /home/boki/Downloads/smaragd-0.1.1/build/install_manifest.txt")
if(NOT EXISTS "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: /mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/install_manifest.txt")
endif()
file(READ "/home/boki/Downloads/smaragd-0.1.1/build/install_manifest.txt" files)
file(READ "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/install_manifest.txt" files)
string(REGEX REPLACE "\n" ";" files "${files}")
foreach(file ${files})
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")

View File

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/boki/Downloads/smaragd-0.1.1")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/boki/Downloads/smaragd-0.1.1/build")
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)

View File

@ -1,808 +0,0 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../src/include/decoration.h
glib.h
-
../src/include/emerald.h
config.h
-
decoration.h
-
X11/Xlib.h
-
X11/Xatom.h
-
X11/Xregion.h
-
X11/cursorfont.h
-
X11/extensions/Xrender.h
-
gtk/gtk.h
-
gtk/gtkwindow.h
-
gdk/gdkx.h
-
dbus/dbus.h
-
dbus/dbus-glib.h
-
dbus/dbus-glib-lowlevel.h
-
libwnck/libwnck.h
-
libwnck/window-action-menu.h
-
cairo.h
-
cairo-xlib.h
-
pango/pango-context.h
-
pango/pangocairo.h
-
dlfcn.h
-
glib.h
-
glib/gstdio.h
-
string.h
-
stdlib.h
-
math.h
-
limits.h
-
unistd.h
-
sys/types.h
-
signal.h
-
sys/wait.h
-
libintl.h
-
locale.h
-
titlebar.h
-
../src/include/engine.h
emerald.h
-
libengine.h
-
../src/include/libengine.h
emerald.h
-
titlebar.h
-
../src/include/titlebar.h
/home/boki/Downloads/smaragd-0.1.1/src/emerald.c
engine.h
-
/home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c
emerald.h
-
engine.h
-
legacy_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/legacy_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/legacy_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/line.c
emerald.h
-
engine.h
-
line_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/line_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/line_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c
emerald.h
-
engine.h
-
oxygen_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c
emerald.h
-
engine.h
-
pixmap_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c
emerald.h
-
engine.h
-
truglass_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/truglass_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/truglass_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c
emerald.h
-
engine.h
-
vrunner_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c
emerald.h
-
engine.h
-
zootreeves_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves_engine.h
/home/boki/Downloads/smaragd-0.1.1/src/main.c
emerald.h
-
engine.h
-
/usr/include/cairo/cairo-deprecated.h
/usr/include/cairo/cairo-features.h
/usr/include/cairo/cairo-version.h
/usr/include/cairo/cairo-xlib.h
cairo.h
/usr/include/cairo/cairo.h
X11/Xlib.h
-
/usr/include/cairo/cairo.h
cairo-version.h
/usr/include/cairo/cairo-version.h
cairo-features.h
/usr/include/cairo/cairo-features.h
cairo-deprecated.h
/usr/include/cairo/cairo-deprecated.h
/usr/include/glib-2.0/glib.h
glib/galloca.h
-
glib/garray.h
-
glib/gasyncqueue.h
-
glib/gatomic.h
-
glib/gbacktrace.h
-
glib/gbase64.h
-
glib/gbitlock.h
-
glib/gbookmarkfile.h
-
glib/gbytes.h
-
glib/gcharset.h
-
glib/gchecksum.h
-
glib/gconvert.h
-
glib/gdataset.h
-
glib/gdate.h
-
glib/gdatetime.h
-
glib/gdir.h
-
glib/genviron.h
-
glib/gerror.h
-
glib/gfileutils.h
-
glib/ggettext.h
-
glib/ghash.h
-
glib/ghmac.h
-
glib/ghook.h
-
glib/ghostutils.h
-
glib/giochannel.h
-
glib/gkeyfile.h
-
glib/glist.h
-
glib/gmacros.h
-
glib/gmain.h
-
glib/gmappedfile.h
-
glib/gmarkup.h
-
glib/gmem.h
-
glib/gmessages.h
-
glib/gnode.h
-
glib/goption.h
-
glib/gpattern.h
-
glib/gpoll.h
-
glib/gprimes.h
-
glib/gqsort.h
-
glib/gquark.h
-
glib/gqueue.h
-
glib/grand.h
-
glib/grcbox.h
-
glib/grefcount.h
-
glib/grefstring.h
-
glib/gregex.h
-
glib/gscanner.h
-
glib/gsequence.h
-
glib/gshell.h
-
glib/gslice.h
-
glib/gslist.h
-
glib/gspawn.h
-
glib/gstrfuncs.h
-
glib/gstringchunk.h
-
glib/gstring.h
-
glib/gtestutils.h
-
glib/gthread.h
-
glib/gthreadpool.h
-
glib/gtimer.h
-
glib/gtimezone.h
-
glib/gtrashstack.h
-
glib/gtree.h
-
glib/gtypes.h
-
glib/gunicode.h
-
glib/guri.h
-
glib/gutils.h
-
glib/guuid.h
-
glib/gvariant.h
-
glib/gvarianttype.h
-
glib/gversion.h
-
glib/gversionmacros.h
-
glib/gwin32.h
-
glib/deprecated/gallocator.h
-
glib/deprecated/gcache.h
-
glib/deprecated/gcompletion.h
-
glib/deprecated/gmain.h
-
glib/deprecated/grel.h
-
glib/deprecated/gthread.h
-
glib/glib-autocleanups.h
-
/usr/include/glib-2.0/glib/deprecated/gallocator.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/deprecated/gcache.h
glib/glist.h
-
/usr/include/glib-2.0/glib/deprecated/gcompletion.h
glib/glist.h
-
/usr/include/glib-2.0/glib/deprecated/gmain.h
glib/gmain.h
-
/usr/include/glib-2.0/glib/deprecated/grel.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/deprecated/gthread.h
glib/gthread.h
-
sys/types.h
-
pthread.h
-
/usr/include/glib-2.0/glib/galloca.h
glib/gtypes.h
-
alloca.h
-
alloca.h
-
malloc.h
-
/usr/include/glib-2.0/glib/garray.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gasyncqueue.h
glib/gthread.h
-
/usr/include/glib-2.0/glib/gatomic.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gbacktrace.h
glib/gtypes.h
-
sys/select.h
-
signal.h
-
/usr/include/glib-2.0/glib/gbase64.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gbitlock.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gbookmarkfile.h
glib/gdatetime.h
-
glib/gerror.h
-
time.h
-
/usr/include/glib-2.0/glib/gbytes.h
glib/gtypes.h
-
glib/garray.h
-
/usr/include/glib-2.0/glib/gcharset.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gchecksum.h
glib/gtypes.h
-
glib/gbytes.h
-
/usr/include/glib-2.0/glib/gconvert.h
glib/gerror.h
-
/usr/include/glib-2.0/glib/gdataset.h
glib/gquark.h
-
/usr/include/glib-2.0/glib/gdate.h
time.h
-
glib/gtypes.h
-
glib/gquark.h
-
/usr/include/glib-2.0/glib/gdatetime.h
glib/gtimezone.h
-
/usr/include/glib-2.0/glib/gdir.h
glib/gerror.h
-
dirent.h
-
/usr/include/glib-2.0/glib/genviron.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gerror.h
stdarg.h
-
glib/gquark.h
-
/usr/include/glib-2.0/glib/gfileutils.h
glibconfig.h
-
glib/gerror.h
-
/usr/include/glib-2.0/glib/ggettext.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/ghash.h
glib/gtypes.h
-
glib/glist.h
-
/usr/include/glib-2.0/glib/ghmac.h
glib/gtypes.h
-
gchecksum.h
/usr/include/glib-2.0/glib/gchecksum.h
/usr/include/glib-2.0/glib/ghook.h
glib/gmem.h
-
/usr/include/glib-2.0/glib/ghostutils.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/giochannel.h
glib/gconvert.h
-
glib/gmain.h
-
glib/gstring.h
-
/usr/include/glib-2.0/glib/gkeyfile.h
glib/gbytes.h
-
glib/gerror.h
-
/usr/include/glib-2.0/glib/glib-autocleanups.h
/usr/include/glib-2.0/glib/glist.h
glib/gmem.h
-
glib/gnode.h
-
/usr/include/glib-2.0/glib/gmacros.h
stddef.h
-
/usr/include/glib-2.0/glib/gmain.h
glib/gpoll.h
-
glib/gslist.h
-
glib/gthread.h
-
/usr/include/glib-2.0/glib/gmappedfile.h
glib/gbytes.h
-
glib/gerror.h
-
/usr/include/glib-2.0/glib/gmarkup.h
stdarg.h
-
glib/gerror.h
-
glib/gslist.h
-
/usr/include/glib-2.0/glib/gmem.h
glib/gutils.h
-
/usr/include/glib-2.0/glib/gmessages.h
stdarg.h
-
glib/gatomic.h
-
glib/gtypes.h
-
glib/gmacros.h
-
glib/gvariant.h
-
/usr/include/glib-2.0/glib/gnode.h
glib/gmem.h
-
/usr/include/glib-2.0/glib/goption.h
glib/gerror.h
-
glib/gquark.h
-
/usr/include/glib-2.0/glib/gpattern.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gpoll.h
glibconfig.h
-
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gprimes.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gprintf.h
glib.h
-
stdio.h
-
stdarg.h
-
/usr/include/glib-2.0/glib/gqsort.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gquark.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gqueue.h
glib/glist.h
-
/usr/include/glib-2.0/glib/grand.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/grcbox.h
glib/gmem.h
-
/usr/include/glib-2.0/glib/grefcount.h
glib/gatomic.h
-
glib/gtypes.h
-
/usr/include/glib-2.0/glib/grefstring.h
gmem.h
/usr/include/glib-2.0/glib/gmem.h
gmacros.h
/usr/include/glib-2.0/glib/gmacros.h
/usr/include/glib-2.0/glib/gregex.h
glib/gerror.h
-
glib/gstring.h
-
/usr/include/glib-2.0/glib/gscanner.h
glib/gdataset.h
-
glib/ghash.h
-
/usr/include/glib-2.0/glib/gsequence.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gshell.h
glib/gerror.h
-
/usr/include/glib-2.0/glib/gslice.h
glib/gtypes.h
-
string.h
-
/usr/include/glib-2.0/glib/gslist.h
glib/gmem.h
-
glib/gnode.h
-
/usr/include/glib-2.0/glib/gspawn.h
glib/gerror.h
-
/usr/include/glib-2.0/glib/gstdio.h
glib/gprintf.h
-
sys/stat.h
-
/usr/include/glib-2.0/glib/gstrfuncs.h
stdarg.h
-
glib/gmacros.h
-
glib/gtypes.h
-
glib/gerror.h
-
/usr/include/glib-2.0/glib/gstring.h
glib/gtypes.h
-
glib/gunicode.h
-
glib/gbytes.h
-
glib/gutils.h
-
/usr/include/glib-2.0/glib/gstringchunk.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gtestutils.h
glib/gmessages.h
-
glib/gstring.h
-
glib/gerror.h
-
glib/gslist.h
-
errno.h
-
string.h
-
/usr/include/glib-2.0/glib/gthread.h
glib/gatomic.h
-
glib/gerror.h
-
glib/gutils.h
-
/usr/include/glib-2.0/glib/gthreadpool.h
glib/gthread.h
-
/usr/include/glib-2.0/glib/gtimer.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gtimezone.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gtrashstack.h
glib/gutils.h
-
/usr/include/glib-2.0/glib/gtree.h
glib/gnode.h
-
/usr/include/glib-2.0/glib/gtypes.h
glibconfig.h
-
glib/gmacros.h
-
glib/gversionmacros.h
-
time.h
-
/usr/include/glib-2.0/glib/gunicode.h
glib/gerror.h
-
glib/gtypes.h
-
/usr/include/glib-2.0/glib/guri.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gutils.h
glib/gtypes.h
-
stdarg.h
-
stdlib.h
-
/usr/include/glib-2.0/glib/guuid.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gvariant.h
glib/gvarianttype.h
-
glib/gstring.h
-
glib/gbytes.h
-
/usr/include/glib-2.0/glib/gvarianttype.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gversion.h
glib/gtypes.h
-
/usr/include/glib-2.0/glib/gversionmacros.h
/usr/include/glib-2.0/glib/gwin32.h
glib/gtypes.h
-
/usr/lib/glib-2.0/include/glibconfig.h
glib/gmacros.h
-
limits.h
-
float.h
-

View File

@ -1,98 +1,25 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/boki/Downloads/smaragd-0.1.1/src/emerald.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/emerald.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/line.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o"
"/home/boki/Downloads/smaragd-0.1.1/src/main.c" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/main.c.o"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"KCOREADDONS_LIB"
"QT_CORE_LIB"
"QT_GUI_LIB"
"QT_NO_DEBUG"
"QT_WIDGETS_LIB"
"_GNU_SOURCE"
"_LARGEFILE64_SOURCE"
"kwin_smaragd_EXPORTS"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"src"
"../src"
"src/kwin_smaragd_autogen/include"
"."
"../src/include"
"../src/engines"
"/usr/include/cairo"
"/usr/include/glib-2.0"
"/usr/lib/glib-2.0/include"
"/usr/include/qt"
"/usr/include/qt/QtCore"
"/usr/lib/qt/mkspecs/linux-g++"
"/usr/include/qt/QtGui"
"/usr/include/qt/QtWidgets"
"/usr/include/KF5/KConfigCore"
"/usr/include/KF5"
"/usr/include/KF5/KCoreAddons"
"/usr/include/KF5/KI18n"
"/usr/include/KF5/KWidgetsAddons"
"/usr/include/KDecoration2"
)
set(CMAKE_DEPENDS_CHECK_CXX
"/home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.cpp" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o"
"/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o"
"/home/boki/Downloads/smaragd-0.1.1/src/shadowengine.cpp" "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"KCOREADDONS_LIB"
"QT_CORE_LIB"
"QT_GUI_LIB"
"QT_NO_DEBUG"
"QT_WIDGETS_LIB"
"_GNU_SOURCE"
"_LARGEFILE64_SOURCE"
"kwin_smaragd_EXPORTS"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"src"
"../src"
"src/kwin_smaragd_autogen/include"
"."
"../src/include"
"../src/engines"
"/usr/include/cairo"
"/usr/include/glib-2.0"
"/usr/lib/glib-2.0/include"
"/usr/include/qt"
"/usr/include/qt/QtCore"
"/usr/lib/qt/mkspecs/linux-g++"
"/usr/include/qt/QtGui"
"/usr/include/qt/QtWidgets"
"/usr/include/KF5/KConfigCore"
"/usr/include/KF5"
"/usr/include/KF5/KCoreAddons"
"/usr/include/KF5/KI18n"
"/usr/include/KF5/KWidgetsAddons"
"/usr/include/KDecoration2"
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/emerald.c" "src/CMakeFiles/kwin_smaragd.dir/emerald.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/emerald.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/legacy.c" "src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/line.c" "src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/oxygen.c" "src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/pixmap.c" "src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/truglass.c" "src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/vrunner.c" "src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/zootreeves.c" "src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/main.c" "src/CMakeFiles/kwin_smaragd.dir/main.c.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/main.c.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.cpp" "src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp" "src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o.d"
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.cpp" "src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o" "gcc" "src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o.d"
)
# Targets to which this target links.

View File

@ -1,40 +1,32 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
@ -43,7 +35,6 @@ $(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
@ -62,13 +53,15 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/boki/Downloads/smaragd-0.1.1
CMAKE_SOURCE_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/boki/Downloads/smaragd-0.1.1/build
CMAKE_BINARY_DIR = "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build"
# Include any dependencies generated for this target.
include src/CMakeFiles/kwin_smaragd.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include src/CMakeFiles/kwin_smaragd.dir/compiler_depend.make
# Include the progress variables for this target.
include src/CMakeFiles/kwin_smaragd.dir/progress.make
@ -77,164 +70,176 @@ include src/CMakeFiles/kwin_smaragd.dir/progress.make
include src/CMakeFiles/kwin_smaragd.dir/flags.make
src/ui_kwin_smaragd_dialog.h: ../src/config/kwin_smaragd_dialog.ui
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating ui_kwin_smaragd_dialog.h"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cmake -DKDE_UIC_EXECUTABLE:FILEPATH=/usr/bin/uic -DKDE_UIC_FILE:FILEPATH=/home/boki/Downloads/smaragd-0.1.1/src/config/kwin_smaragd_dialog.ui -DKDE_UIC_H_FILE:FILEPATH=/home/boki/Downloads/smaragd-0.1.1/build/src/ui_kwin_smaragd_dialog.h -DKDE_UIC_BASENAME:STRING=kwin_smaragd_dialog -P /usr/lib64/cmake/KF5I18n/kf5i18nuic.cmake
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Generating ui_kwin_smaragd_dialog.h"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cmake -DKDE_UIC_EXECUTABLE:FILEPATH=/usr/bin/uic -DKDE_UIC_FILE:FILEPATH=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/config/kwin_smaragd_dialog.ui -DKDE_UIC_H_FILE:FILEPATH=/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/ui_kwin_smaragd_dialog.h -DKDE_UIC_BASENAME:STRING=kwin_smaragd_dialog -P /usr/lib64/cmake/KF5I18n/kf5i18nuic.cmake
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o: src/kwin_smaragd_autogen/mocs_compilation.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o -c /home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o -MF CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp"
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp > CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp" > CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.i
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp" -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.s
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o: ../src/kwin_smaragd.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o -c /home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.cpp
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o -MF CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o.d -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.cpp"
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.cpp > CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.cpp" > CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.i
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.cpp -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.cpp" -o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.s
src/CMakeFiles/kwin_smaragd.dir/emerald.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/emerald.c.o: ../src/emerald.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object src/CMakeFiles/kwin_smaragd.dir/emerald.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/emerald.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/emerald.c
src/CMakeFiles/kwin_smaragd.dir/emerald.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Building C object src/CMakeFiles/kwin_smaragd.dir/emerald.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/emerald.c.o -MF CMakeFiles/kwin_smaragd.dir/emerald.c.o.d -o CMakeFiles/kwin_smaragd.dir/emerald.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/emerald.c"
src/CMakeFiles/kwin_smaragd.dir/emerald.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/emerald.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/emerald.c > CMakeFiles/kwin_smaragd.dir/emerald.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/emerald.c" > CMakeFiles/kwin_smaragd.dir/emerald.c.i
src/CMakeFiles/kwin_smaragd.dir/emerald.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/emerald.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/emerald.c -o CMakeFiles/kwin_smaragd.dir/emerald.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/emerald.c" -o CMakeFiles/kwin_smaragd.dir/emerald.c.s
src/CMakeFiles/kwin_smaragd.dir/main.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/main.c.o: ../src/main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object src/CMakeFiles/kwin_smaragd.dir/main.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/main.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/main.c
src/CMakeFiles/kwin_smaragd.dir/main.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_5) "Building C object src/CMakeFiles/kwin_smaragd.dir/main.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/main.c.o -MF CMakeFiles/kwin_smaragd.dir/main.c.o.d -o CMakeFiles/kwin_smaragd.dir/main.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/main.c"
src/CMakeFiles/kwin_smaragd.dir/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/main.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/main.c > CMakeFiles/kwin_smaragd.dir/main.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/main.c" > CMakeFiles/kwin_smaragd.dir/main.c.i
src/CMakeFiles/kwin_smaragd.dir/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/main.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/main.c -o CMakeFiles/kwin_smaragd.dir/main.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/main.c" -o CMakeFiles/kwin_smaragd.dir/main.c.s
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o: ../src/shadowengine.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o -c /home/boki/Downloads/smaragd-0.1.1/src/shadowengine.cpp
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o -MF CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o.d -o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.cpp"
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/shadowengine.cpp > CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.cpp" > CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.i
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/shadowengine.cpp -o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.cpp" -o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.s
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o: ../src/engines/legacy.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_7) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/legacy.c"
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/legacy.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c > CMakeFiles/kwin_smaragd.dir/engines/legacy.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/legacy.c" > CMakeFiles/kwin_smaragd.dir/engines/legacy.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/legacy.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c -o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/legacy.c" -o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o: ../src/engines/line.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/line.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/line.c
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_8) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/line.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/line.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/line.c"
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/line.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/line.c > CMakeFiles/kwin_smaragd.dir/engines/line.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/line.c" > CMakeFiles/kwin_smaragd.dir/engines/line.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/line.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/line.c -o CMakeFiles/kwin_smaragd.dir/engines/line.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/line.c" -o CMakeFiles/kwin_smaragd.dir/engines/line.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o: ../src/engines/oxygen.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_9) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/oxygen.c"
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c > CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/oxygen.c" > CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c -o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/oxygen.c" -o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o: ../src/engines/pixmap.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_10) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/pixmap.c"
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c > CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/pixmap.c" > CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c -o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/pixmap.c" -o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o: ../src/engines/truglass.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_11) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/truglass.c"
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/truglass.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c > CMakeFiles/kwin_smaragd.dir/engines/truglass.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/truglass.c" > CMakeFiles/kwin_smaragd.dir/engines/truglass.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/truglass.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c -o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/truglass.c" -o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o: ../src/engines/vrunner.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_12) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/vrunner.c"
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c > CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/vrunner.c" > CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c -o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/vrunner.c" -o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.s
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o: src/CMakeFiles/kwin_smaragd.dir/flags.make
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o: ../src/engines/zootreeves.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o -c /home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o: src/CMakeFiles/kwin_smaragd.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_13) "Building C object src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o -MF CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o.d -o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o -c "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/zootreeves.c"
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.i"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c > CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.i
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/zootreeves.c" > CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.i
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.s"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c -o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.s
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/zootreeves.c" -o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.s
# Object files for target kwin_smaragd
kwin_smaragd_OBJECTS = \
@ -270,19 +275,18 @@ src/kwin_smaragd.so: src/CMakeFiles/kwin_smaragd.dir/build.make
src/kwin_smaragd.so: /usr/lib/libcairo.so
src/kwin_smaragd.so: /usr/lib/libglib-2.0.so
src/kwin_smaragd.so: src/CMakeFiles/kwin_smaragd.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/boki/Downloads/smaragd-0.1.1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Linking CXX shared module kwin_smaragd.so"
cd /home/boki/Downloads/smaragd-0.1.1/build/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/kwin_smaragd.dir/link.txt --verbose=$(VERBOSE)
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_14) "Linking CXX shared module kwin_smaragd.so"
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/kwin_smaragd.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
src/CMakeFiles/kwin_smaragd.dir/build: src/kwin_smaragd.so
.PHONY : src/CMakeFiles/kwin_smaragd.dir/build
src/CMakeFiles/kwin_smaragd.dir/clean:
cd /home/boki/Downloads/smaragd-0.1.1/build/src && $(CMAKE_COMMAND) -P CMakeFiles/kwin_smaragd.dir/cmake_clean.cmake
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" && $(CMAKE_COMMAND) -P CMakeFiles/kwin_smaragd.dir/cmake_clean.cmake
.PHONY : src/CMakeFiles/kwin_smaragd.dir/clean
src/CMakeFiles/kwin_smaragd.dir/depend: src/ui_kwin_smaragd_dialog.h
cd /home/boki/Downloads/smaragd-0.1.1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/boki/Downloads/smaragd-0.1.1 /home/boki/Downloads/smaragd-0.1.1/src /home/boki/Downloads/smaragd-0.1.1/build /home/boki/Downloads/smaragd-0.1.1/build/src /home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/DependInfo.cmake --color=$(COLOR)
cd "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd.dir/DependInfo.cmake" --color=$(COLOR)
.PHONY : src/CMakeFiles/kwin_smaragd.dir/depend

View File

@ -3,17 +3,29 @@ file(REMOVE_RECURSE
"CMakeFiles/kwin_smaragd_autogen.dir/ParseCache.txt"
"kwin_smaragd_autogen"
"CMakeFiles/kwin_smaragd.dir/emerald.c.o"
"CMakeFiles/kwin_smaragd.dir/emerald.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/line.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/line.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o.d"
"CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o"
"CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o.d"
"CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o"
"CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o.d"
"CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o"
"CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o.d"
"CMakeFiles/kwin_smaragd.dir/main.c.o"
"CMakeFiles/kwin_smaragd.dir/main.c.o.d"
"CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o"
"CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o.d"
"kwin_smaragd.pdb"
"kwin_smaragd.so"
"ui_kwin_smaragd_dialog.h"

View File

@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for kwin_smaragd.

View File

@ -0,0 +1,164 @@
src/CMakeFiles/kwin_smaragd.dir/emerald.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/emerald.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/legacy.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/legacy_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/line.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/line.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/line_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/oxygen.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/oxygen_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/pixmap.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/pixmap_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/truglass.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/truglass_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/vrunner.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/vrunner_engine.h

View File

@ -0,0 +1,165 @@
src/CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/zootreeves.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/engines/zootreeves_engine.h

View File

@ -1,17 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.19
# Generated by "Unix Makefiles" Generator, CMake Version 3.21
# compile C with /usr/bin/cc
# compile CXX with /usr/bin/c++
C_DEFINES = -DKCOREADDONS_LIB -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -Dkwin_smaragd_EXPORTS
C_INCLUDES = -I/home/boki/Downloads/smaragd-0.1.1/build/src -I/home/boki/Downloads/smaragd-0.1.1/src -I/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include -I/home/boki/Downloads/smaragd-0.1.1/build -I/home/boki/Downloads/smaragd-0.1.1/src/include -I/home/boki/Downloads/smaragd-0.1.1/src/engines -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -isystem /usr/include/qt -isystem /usr/include/qt/QtCore -isystem /usr/lib/qt/mkspecs/linux-g++ -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtWidgets -isystem /usr/include/KF5/KConfigCore -isystem /usr/include/KF5 -isystem /usr/include/KF5/KCoreAddons -isystem /usr/include/KF5/KI18n -isystem /usr/include/KF5/KWidgetsAddons -isystem /usr/include/KDecoration2
C_INCLUDES = -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/include" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines" -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -isystem /usr/include/qt -isystem /usr/include/qt/QtCore -isystem /usr/lib/qt/mkspecs/linux-g++ -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtWidgets -isystem /usr/include/KF5/KConfigCore -isystem /usr/include/KF5 -isystem /usr/include/KF5/KCoreAddons -isystem /usr/include/KF5/KI18n -isystem /usr/include/KF5/KWidgetsAddons -isystem /usr/include/KDecoration2
C_FLAGS = -fno-common -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wmissing-format-attribute -Wwrite-strings -Werror=implicit-function-declaration -std=c99 -fPIC -fvisibility=hidden -fPIC -std=gnu90
CXX_DEFINES = -DKCOREADDONS_LIB -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -Dkwin_smaragd_EXPORTS
CXX_INCLUDES = -I/home/boki/Downloads/smaragd-0.1.1/build/src -I/home/boki/Downloads/smaragd-0.1.1/src -I/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include -I/home/boki/Downloads/smaragd-0.1.1/build -I/home/boki/Downloads/smaragd-0.1.1/src/include -I/home/boki/Downloads/smaragd-0.1.1/src/engines -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -isystem /usr/include/qt -isystem /usr/include/qt/QtCore -isystem /usr/lib/qt/mkspecs/linux-g++ -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtWidgets -isystem /usr/include/KF5/KConfigCore -isystem /usr/include/KF5 -isystem /usr/include/KF5/KCoreAddons -isystem /usr/include/KF5/KI18n -isystem /usr/include/KF5/KWidgetsAddons -isystem /usr/include/KDecoration2
CXX_INCLUDES = -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/include" -I"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines" -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -isystem /usr/include/qt -isystem /usr/include/qt/QtCore -isystem /usr/lib/qt/mkspecs/linux-g++ -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtWidgets -isystem /usr/include/KF5/KConfigCore -isystem /usr/include/KF5 -isystem /usr/include/KF5/KCoreAddons -isystem /usr/include/KF5/KI18n -isystem /usr/include/KF5/KWidgetsAddons -isystem /usr/include/KDecoration2
CXX_FLAGS = -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -Wdate-time -Wsuggest-override -Wlogical-op -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -std=gnu++11

View File

@ -0,0 +1,409 @@
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/kwin_smaragd.cpp \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/kwin_smaragd.h \
/usr/include/KDecoration2/KDecoration2/Decoration \
/usr/include/KDecoration2/kdecoration2/decoration.h \
/usr/include/KDecoration2/kdecoration2/decorationshadow.h \
/usr/include/KDecoration2/kdecoration2/kdecoration2_export.h \
/usr/include/qt/QtGui/QImage /usr/include/qt/QtGui/qimage.h \
/usr/include/qt/QtGui/qtguiglobal.h /usr/include/qt/QtCore/qglobal.h \
/usr/include/c++/11.1.0/type_traits \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++config.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/os_defines.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
/usr/include/c++/11.1.0/cstddef \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/include/c++/11.1.0/utility \
/usr/include/c++/11.1.0/bits/stl_relops.h \
/usr/include/c++/11.1.0/bits/stl_pair.h \
/usr/include/c++/11.1.0/bits/move.h \
/usr/include/c++/11.1.0/initializer_list /usr/include/assert.h \
/usr/include/qt/QtCore/qconfig.h /usr/include/qt/QtCore/qtcore-config.h \
/usr/include/qt/QtCore/qsystemdetection.h \
/usr/include/qt/QtCore/qprocessordetection.h \
/usr/include/qt/QtCore/qcompilerdetection.h \
/usr/include/c++/11.1.0/algorithm \
/usr/include/c++/11.1.0/bits/stl_algobase.h \
/usr/include/c++/11.1.0/bits/functexcept.h \
/usr/include/c++/11.1.0/bits/exception_defines.h \
/usr/include/c++/11.1.0/bits/cpp_type_traits.h \
/usr/include/c++/11.1.0/ext/type_traits.h \
/usr/include/c++/11.1.0/ext/numeric_traits.h \
/usr/include/c++/11.1.0/bits/stl_iterator_base_types.h \
/usr/include/c++/11.1.0/bits/stl_iterator_base_funcs.h \
/usr/include/c++/11.1.0/bits/concept_check.h \
/usr/include/c++/11.1.0/debug/assertions.h \
/usr/include/c++/11.1.0/bits/stl_iterator.h \
/usr/include/c++/11.1.0/bits/ptr_traits.h \
/usr/include/c++/11.1.0/debug/debug.h \
/usr/include/c++/11.1.0/bits/predefined_ops.h \
/usr/include/c++/11.1.0/bits/stl_algo.h /usr/include/c++/11.1.0/cstdlib \
/usr/include/stdlib.h /usr/include/bits/libc-header-start.h \
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/sys/types.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
/usr/include/endian.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/c++/11.1.0/bits/std_abs.h \
/usr/include/c++/11.1.0/bits/algorithmfwd.h \
/usr/include/c++/11.1.0/bits/stl_heap.h \
/usr/include/c++/11.1.0/bits/stl_tempbuf.h \
/usr/include/c++/11.1.0/bits/stl_construct.h /usr/include/c++/11.1.0/new \
/usr/include/c++/11.1.0/bits/exception.h \
/usr/include/c++/11.1.0/bits/uniform_int_dist.h \
/usr/include/qt/QtCore/qtypeinfo.h /usr/include/qt/QtCore/qsysinfo.h \
/usr/include/qt/QtCore/qlogging.h /usr/include/qt/QtCore/qflags.h \
/usr/include/qt/QtCore/qatomic.h /usr/include/qt/QtCore/qbasicatomic.h \
/usr/include/qt/QtCore/qatomic_cxx11.h \
/usr/include/qt/QtCore/qgenericatomic.h /usr/include/c++/11.1.0/atomic \
/usr/include/c++/11.1.0/bits/atomic_base.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdint.h \
/usr/include/stdint.h /usr/include/bits/wchar.h \
/usr/include/bits/stdint-uintn.h \
/usr/include/c++/11.1.0/bits/atomic_lockfree_defines.h \
/usr/include/qt/QtCore/qglobalstatic.h /usr/include/qt/QtCore/qnumeric.h \
/usr/include/qt/QtCore/qversiontagging.h \
/usr/include/qt/QtGui/qtgui-config.h /usr/include/qt/QtGui/qcolor.h \
/usr/include/qt/QtGui/qrgb.h /usr/include/qt/QtCore/qnamespace.h \
/usr/include/qt/QtCore/qstringlist.h /usr/include/qt/QtCore/qlist.h \
/usr/include/qt/QtCore/qalgorithms.h /usr/include/qt/QtCore/qiterator.h \
/usr/include/qt/QtCore/qrefcount.h /usr/include/qt/QtCore/qarraydata.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/qt/QtCore/qhashfunctions.h /usr/include/qt/QtCore/qstring.h \
/usr/include/qt/QtCore/qchar.h /usr/include/qt/QtCore/qbytearray.h \
/usr/include/c++/11.1.0/stdlib.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/c++/11.1.0/string /usr/include/c++/11.1.0/bits/stringfwd.h \
/usr/include/c++/11.1.0/bits/memoryfwd.h \
/usr/include/c++/11.1.0/bits/char_traits.h \
/usr/include/c++/11.1.0/bits/postypes.h /usr/include/c++/11.1.0/cwchar \
/usr/include/wchar.h /usr/include/bits/types/wint_t.h \
/usr/include/bits/types/mbstate_t.h \
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/c++/11.1.0/cstdint \
/usr/include/c++/11.1.0/bits/allocator.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
/usr/include/c++/11.1.0/ext/new_allocator.h \
/usr/include/c++/11.1.0/bits/localefwd.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++locale.h \
/usr/include/c++/11.1.0/clocale /usr/include/locale.h \
/usr/include/bits/locale.h /usr/include/c++/11.1.0/iosfwd \
/usr/include/c++/11.1.0/cctype /usr/include/ctype.h \
/usr/include/c++/11.1.0/bits/ostream_insert.h \
/usr/include/c++/11.1.0/bits/cxxabi_forced.h \
/usr/include/c++/11.1.0/bits/stl_function.h \
/usr/include/c++/11.1.0/backward/binders.h \
/usr/include/c++/11.1.0/bits/range_access.h \
/usr/include/c++/11.1.0/bits/basic_string.h \
/usr/include/c++/11.1.0/ext/atomicity.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
/usr/include/sys/single_threaded.h \
/usr/include/c++/11.1.0/ext/alloc_traits.h \
/usr/include/c++/11.1.0/bits/alloc_traits.h \
/usr/include/c++/11.1.0/ext/string_conversions.h \
/usr/include/c++/11.1.0/cstdio /usr/include/stdio.h \
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/c++/11.1.0/cerrno \
/usr/include/errno.h /usr/include/bits/errno.h \
/usr/include/linux/errno.h /usr/include/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/bits/types/error_t.h \
/usr/include/c++/11.1.0/bits/charconv.h \
/usr/include/c++/11.1.0/bits/functional_hash.h \
/usr/include/c++/11.1.0/bits/hash_bytes.h \
/usr/include/c++/11.1.0/bits/basic_string.tcc \
/usr/include/c++/11.1.0/iterator \
/usr/include/c++/11.1.0/bits/stream_iterator.h \
/usr/include/c++/11.1.0/bits/streambuf_iterator.h \
/usr/include/c++/11.1.0/streambuf \
/usr/include/c++/11.1.0/bits/ios_base.h \
/usr/include/c++/11.1.0/bits/locale_classes.h \
/usr/include/c++/11.1.0/bits/locale_classes.tcc \
/usr/include/c++/11.1.0/system_error \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/error_constants.h \
/usr/include/c++/11.1.0/stdexcept /usr/include/c++/11.1.0/exception \
/usr/include/c++/11.1.0/bits/exception_ptr.h \
/usr/include/c++/11.1.0/bits/cxxabi_init_exception.h \
/usr/include/c++/11.1.0/typeinfo \
/usr/include/c++/11.1.0/bits/nested_exception.h \
/usr/include/c++/11.1.0/bits/streambuf.tcc \
/usr/include/qt/QtCore/qstringliteral.h \
/usr/include/qt/QtCore/qstringalgorithms.h \
/usr/include/qt/QtCore/qstringview.h /usr/include/qt/QtCore/qpair.h \
/usr/include/c++/11.1.0/numeric \
/usr/include/c++/11.1.0/bits/stl_numeric.h \
/usr/include/c++/11.1.0/functional /usr/include/c++/11.1.0/tuple \
/usr/include/c++/11.1.0/array \
/usr/include/c++/11.1.0/bits/uses_allocator.h \
/usr/include/c++/11.1.0/bits/invoke.h \
/usr/include/c++/11.1.0/bits/refwrap.h \
/usr/include/c++/11.1.0/bits/std_function.h \
/usr/include/qt/QtCore/qvector.h \
/usr/include/qt/QtCore/qcontainertools_impl.h \
/usr/include/c++/11.1.0/vector \
/usr/include/c++/11.1.0/bits/stl_uninitialized.h \
/usr/include/c++/11.1.0/bits/stl_vector.h \
/usr/include/c++/11.1.0/bits/stl_bvector.h \
/usr/include/c++/11.1.0/bits/vector.tcc /usr/include/c++/11.1.0/list \
/usr/include/c++/11.1.0/bits/stl_list.h \
/usr/include/c++/11.1.0/bits/allocated_ptr.h \
/usr/include/c++/11.1.0/ext/aligned_buffer.h \
/usr/include/c++/11.1.0/bits/list.tcc \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
/usr/include/bits/uio_lim.h /usr/include/qt/QtCore/qbytearraylist.h \
/usr/include/qt/QtCore/qregexp.h /usr/include/qt/QtCore/qstringmatcher.h \
/usr/include/qt/QtGui/qrgba64.h /usr/include/qt/QtGui/qpaintdevice.h \
/usr/include/qt/QtGui/qwindowdefs.h /usr/include/qt/QtCore/qobjectdefs.h \
/usr/include/qt/QtCore/qobjectdefs_impl.h /usr/include/qt/QtCore/qrect.h \
/usr/include/qt/QtCore/qmargins.h /usr/include/qt/QtCore/qsize.h \
/usr/include/qt/QtCore/qpoint.h /usr/include/qt/QtGui/qpixelformat.h \
/usr/include/qt/QtGui/qtransform.h /usr/include/qt/QtGui/qmatrix.h \
/usr/include/qt/QtGui/qpolygon.h /usr/include/qt/QtGui/qregion.h \
/usr/include/qt/QtCore/qdatastream.h \
/usr/include/qt/QtCore/qscopedpointer.h \
/usr/include/qt/QtCore/qiodevice.h /usr/include/qt/QtCore/qobject.h \
/usr/include/qt/QtCore/qmetatype.h \
/usr/include/qt/QtCore/qvarlengtharray.h \
/usr/include/qt/QtCore/qcontainerfwd.h /usr/include/c++/11.1.0/map \
/usr/include/c++/11.1.0/bits/stl_tree.h \
/usr/include/c++/11.1.0/bits/stl_map.h \
/usr/include/c++/11.1.0/bits/stl_multimap.h \
/usr/include/c++/11.1.0/bits/erase_if.h \
/usr/include/qt/QtCore/qobject_impl.h /usr/include/c++/11.1.0/chrono \
/usr/include/c++/11.1.0/ratio /usr/include/c++/11.1.0/limits \
/usr/include/c++/11.1.0/ctime \
/usr/include/c++/11.1.0/bits/parse_numbers.h \
/usr/include/qt/QtCore/qline.h /usr/include/qt/QtCore/QMargins \
/usr/include/qt/QtCore/qmargins.h /usr/include/qt/QtCore/QObject \
/usr/include/qt/QtCore/qobject.h /usr/include/qt/QtCore/QPointer \
/usr/include/qt/QtCore/qpointer.h \
/usr/include/qt/QtCore/qsharedpointer.h \
/usr/include/qt/QtCore/qshareddata.h /usr/include/qt/QtCore/qhash.h \
/usr/include/qt/QtCore/qsharedpointer_impl.h \
/usr/include/c++/11.1.0/memory \
/usr/include/c++/11.1.0/bits/stl_raw_storage_iter.h \
/usr/include/c++/11.1.0/bits/align.h /usr/include/c++/11.1.0/bit \
/usr/include/c++/11.1.0/bits/unique_ptr.h \
/usr/include/c++/11.1.0/bits/shared_ptr.h \
/usr/include/c++/11.1.0/bits/shared_ptr_base.h \
/usr/include/c++/11.1.0/ext/concurrence.h \
/usr/include/c++/11.1.0/bits/shared_ptr_atomic.h \
/usr/include/c++/11.1.0/backward/auto_ptr.h /usr/include/qt/QtCore/QRect \
/usr/include/qt/QtCore/qrect.h \
/usr/include/KDecoration2/KDecoration2/DecorationButton \
/usr/include/KDecoration2/kdecoration2/decorationbutton.h \
/usr/include/KDecoration2/kdecoration2/decorationdefines.h \
/usr/include/qt/QtCore/QVariantList /usr/include/qt/QtCore/qvariant.h \
/usr/include/qt/QtCore/qmap.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/shadowengine.h \
/usr/include/qt/QtGui/QPainter /usr/include/qt/QtGui/qpainter.h \
/usr/include/qt/QtGui/qpixmap.h /usr/include/qt/QtGui/qimage.h \
/usr/include/qt/QtGui/qtextoption.h /usr/include/qt/QtGui/qpen.h \
/usr/include/qt/QtGui/qbrush.h /usr/include/qt/QtGui/qfontinfo.h \
/usr/include/qt/QtGui/qfont.h /usr/include/qt/QtGui/qfontmetrics.h \
/usr/include/KDecoration2/KDecoration2/DecoratedClient \
/usr/include/KDecoration2/kdecoration2/decoratedclient.h \
/usr/include/qt/QtGui/QFont /usr/include/qt/QtGui/qfont.h \
/usr/include/qt/QtGui/QIcon /usr/include/qt/QtGui/qicon.h \
/usr/include/qt/QtGui/QPalette /usr/include/qt/QtGui/qpalette.h \
/usr/include/KDecoration2/KDecoration2/DecorationButtonGroup \
/usr/include/KDecoration2/kdecoration2/decorationbuttongroup.h \
/usr/include/KDecoration2/kdecoration2/decorationbutton.h \
/usr/include/KDecoration2/KDecoration2/DecorationSettings \
/usr/include/KDecoration2/kdecoration2/decorationsettings.h \
/usr/include/qt/QtGui/QFontMetricsF /usr/include/qt/QtGui/qfontmetrics.h \
/usr/include/KDecoration2/KDecoration2/DecorationShadow \
/usr/include/KDecoration2/kdecoration2/decorationshadow.h \
/usr/include/KF5/KConfigCore/KConfig \
/usr/include/KF5/KConfigCore/kconfig.h \
/usr/include/KF5/KConfigCore/kconfigbase.h \
/usr/include/KF5/KConfigCore/kconfigcore_export.h \
/usr/include/qt/QtCore/QStringList /usr/include/qt/QtCore/qstringlist.h \
/usr/include/qt/QtCore/QtGlobal /usr/include/qt/QtCore/qglobal.h \
/usr/include/qt/QtCore/QByteArray /usr/include/qt/QtCore/qbytearray.h \
/usr/include/qt/QtCore/QList /usr/include/qt/QtCore/qlist.h \
/usr/include/qt/QtCore/QStandardPaths \
/usr/include/qt/QtCore/qstandardpaths.h /usr/include/qt/QtCore/QString \
/usr/include/qt/QtCore/qstring.h /usr/include/qt/QtCore/QVariant \
/usr/include/KF5/KConfigCore/KConfigGroup \
/usr/include/KF5/KConfigCore/kconfiggroup.h \
/usr/include/qt/QtCore/QExplicitlySharedDataPointer \
/usr/include/qt/QtCore/qshareddata.h \
/usr/include/KF5/KConfigCore/conversioncheck.h \
/usr/include/qt/QtCore/QDate /usr/include/qt/QtCore/qdatetime.h \
/usr/include/qt/QtCore/QPoint /usr/include/qt/QtCore/qpoint.h \
/usr/include/qt/QtCore/QSize /usr/include/qt/QtCore/qsize.h \
/usr/include/KF5/KCoreAddons/KPluginFactory \
/usr/include/KF5/KCoreAddons/kpluginfactory.h \
/usr/include/KF5/KCoreAddons/kcoreaddons_export.h \
/usr/include/KF5/KCoreAddons/kexportplugin.h \
/usr/include/qt/QtCore/QPluginLoader \
/usr/include/qt/QtCore/qpluginloader.h /usr/include/qt/QtCore/qlibrary.h \
/usr/include/qt/QtCore/qplugin.h /usr/include/qt/QtCore/qpointer.h \
/usr/include/qt/QtCore/qjsonobject.h /usr/include/qt/QtCore/qjsonvalue.h \
/usr/include/qt/QtCore/qcborvalue.h /usr/include/qt/QtCore/qdatetime.h \
/usr/include/qt/QtCore/qcborcommon.h /usr/include/qt/QtCore/qdebug.h \
/usr/include/qt/QtCore/qtextstream.h /usr/include/qt/QtCore/qlocale.h \
/usr/include/qt/QtCore/qvariant.h /usr/include/qt/QtCore/qset.h \
/usr/include/qt/QtCore/qcontiguouscache.h \
/usr/include/qt/QtCore/qregularexpression.h \
/usr/include/qt/QtCore/qurl.h /usr/include/qt/QtCore/quuid.h \
/usr/include/qt/QtCore/QtPlugin /usr/include/qt/QtCore/qplugin.h \
/usr/include/KF5/KCoreAddons/kcoreaddons_export.h \
/usr/include/qt/QtCore/QDebug /usr/include/qt/QtCore/qdebug.h \
/usr/include/qt/QtGui/QPaintEngine /usr/include/qt/QtGui/qpaintengine.h \
/usr/include/qt/QtGui/qpainter.h /usr/include/qt/QtGui/QBitmap \
/usr/include/qt/QtGui/qbitmap.h \
/usr/include/qt/QtCore/QPropertyAnimation \
/usr/include/qt/QtCore/qpropertyanimation.h \
/usr/include/qt/QtCore/qvariantanimation.h \
/usr/include/qt/QtCore/qeasingcurve.h \
/usr/include/qt/QtCore/qabstractanimation.h /usr/include/cairo/cairo.h \
/usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
/usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \
/usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo-xlib.h /usr/include/cairo/cairo.h \
/usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/sys/stat.h /usr/include/bits/stat.h \
/usr/include/bits/struct_stat.h /usr/include/bits/statx.h \
/usr/include/linux/stat.h /usr/include/linux/types.h \
/usr/include/asm/types.h /usr/include/asm-generic/types.h \
/usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h /usr/include/asm/posix_types.h \
/usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \
/usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/c++/11.1.0/math.h \
/usr/include/c++/11.1.0/cmath /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include/kwin_smaragd.moc

View File

@ -0,0 +1,234 @@
src/CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/EWIEGA46WW/moc_kwin_smaragd.cpp \
/usr/include/c++/11.1.0/memory \
/usr/include/c++/11.1.0/bits/stl_algobase.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++config.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/os_defines.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
/usr/include/c++/11.1.0/bits/functexcept.h \
/usr/include/c++/11.1.0/bits/exception_defines.h \
/usr/include/c++/11.1.0/bits/cpp_type_traits.h \
/usr/include/c++/11.1.0/ext/type_traits.h \
/usr/include/c++/11.1.0/ext/numeric_traits.h \
/usr/include/c++/11.1.0/bits/stl_pair.h \
/usr/include/c++/11.1.0/bits/move.h /usr/include/c++/11.1.0/type_traits \
/usr/include/c++/11.1.0/bits/stl_iterator_base_types.h \
/usr/include/c++/11.1.0/bits/stl_iterator_base_funcs.h \
/usr/include/c++/11.1.0/bits/concept_check.h \
/usr/include/c++/11.1.0/debug/assertions.h \
/usr/include/c++/11.1.0/bits/stl_iterator.h \
/usr/include/c++/11.1.0/bits/ptr_traits.h \
/usr/include/c++/11.1.0/debug/debug.h \
/usr/include/c++/11.1.0/bits/predefined_ops.h \
/usr/include/c++/11.1.0/bits/allocator.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
/usr/include/c++/11.1.0/ext/new_allocator.h /usr/include/c++/11.1.0/new \
/usr/include/c++/11.1.0/bits/exception.h \
/usr/include/c++/11.1.0/bits/memoryfwd.h \
/usr/include/c++/11.1.0/bits/stl_construct.h \
/usr/include/c++/11.1.0/bits/stl_uninitialized.h \
/usr/include/c++/11.1.0/ext/alloc_traits.h \
/usr/include/c++/11.1.0/bits/alloc_traits.h \
/usr/include/c++/11.1.0/bits/stl_tempbuf.h \
/usr/include/c++/11.1.0/bits/stl_raw_storage_iter.h \
/usr/include/c++/11.1.0/bits/align.h /usr/include/c++/11.1.0/bit \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdint.h \
/usr/include/stdint.h /usr/include/bits/libc-header-start.h \
/usr/include/bits/types.h /usr/include/bits/timesize.h \
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
/usr/include/bits/wchar.h /usr/include/bits/stdint-intn.h \
/usr/include/bits/stdint-uintn.h \
/usr/include/c++/11.1.0/bits/uses_allocator.h \
/usr/include/c++/11.1.0/bits/unique_ptr.h \
/usr/include/c++/11.1.0/utility \
/usr/include/c++/11.1.0/bits/stl_relops.h \
/usr/include/c++/11.1.0/initializer_list /usr/include/c++/11.1.0/tuple \
/usr/include/c++/11.1.0/array \
/usr/include/c++/11.1.0/bits/range_access.h \
/usr/include/c++/11.1.0/bits/invoke.h \
/usr/include/c++/11.1.0/bits/stl_function.h \
/usr/include/c++/11.1.0/backward/binders.h \
/usr/include/c++/11.1.0/bits/functional_hash.h \
/usr/include/c++/11.1.0/bits/hash_bytes.h \
/usr/include/c++/11.1.0/bits/shared_ptr.h /usr/include/c++/11.1.0/iosfwd \
/usr/include/c++/11.1.0/bits/stringfwd.h \
/usr/include/c++/11.1.0/bits/postypes.h /usr/include/c++/11.1.0/cwchar \
/usr/include/wchar.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
/usr/include/bits/types/__locale_t.h \
/usr/include/c++/11.1.0/bits/shared_ptr_base.h \
/usr/include/c++/11.1.0/typeinfo \
/usr/include/c++/11.1.0/bits/allocated_ptr.h \
/usr/include/c++/11.1.0/bits/refwrap.h \
/usr/include/c++/11.1.0/ext/aligned_buffer.h \
/usr/include/c++/11.1.0/ext/atomicity.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
/usr/include/sys/single_threaded.h \
/usr/include/c++/11.1.0/ext/concurrence.h \
/usr/include/c++/11.1.0/exception \
/usr/include/c++/11.1.0/bits/exception_ptr.h \
/usr/include/c++/11.1.0/bits/cxxabi_init_exception.h \
/usr/include/c++/11.1.0/bits/nested_exception.h \
/usr/include/c++/11.1.0/bits/shared_ptr_atomic.h \
/usr/include/c++/11.1.0/bits/atomic_base.h \
/usr/include/c++/11.1.0/bits/atomic_lockfree_defines.h \
/usr/include/c++/11.1.0/backward/auto_ptr.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/EWIEGA46WW/../../../../src/kwin_smaragd.h \
/usr/include/KDecoration2/KDecoration2/Decoration \
/usr/include/KDecoration2/kdecoration2/decoration.h \
/usr/include/KDecoration2/kdecoration2/decorationshadow.h \
/usr/include/KDecoration2/kdecoration2/kdecoration2_export.h \
/usr/include/qt/QtGui/QImage /usr/include/qt/QtGui/qimage.h \
/usr/include/qt/QtGui/qtguiglobal.h /usr/include/qt/QtCore/qglobal.h \
/usr/include/c++/11.1.0/cstddef /usr/include/assert.h \
/usr/include/qt/QtCore/qconfig.h /usr/include/qt/QtCore/qtcore-config.h \
/usr/include/qt/QtCore/qsystemdetection.h \
/usr/include/qt/QtCore/qprocessordetection.h \
/usr/include/qt/QtCore/qcompilerdetection.h \
/usr/include/c++/11.1.0/algorithm \
/usr/include/c++/11.1.0/bits/stl_algo.h /usr/include/c++/11.1.0/cstdlib \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
/usr/include/endian.h /usr/include/bits/byteswap.h \
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
/usr/include/alloca.h /usr/include/bits/stdlib-float.h \
/usr/include/c++/11.1.0/bits/std_abs.h \
/usr/include/c++/11.1.0/bits/algorithmfwd.h \
/usr/include/c++/11.1.0/bits/stl_heap.h \
/usr/include/c++/11.1.0/bits/uniform_int_dist.h \
/usr/include/qt/QtCore/qtypeinfo.h /usr/include/qt/QtCore/qsysinfo.h \
/usr/include/qt/QtCore/qlogging.h /usr/include/qt/QtCore/qflags.h \
/usr/include/qt/QtCore/qatomic.h /usr/include/qt/QtCore/qbasicatomic.h \
/usr/include/qt/QtCore/qatomic_cxx11.h \
/usr/include/qt/QtCore/qgenericatomic.h /usr/include/c++/11.1.0/atomic \
/usr/include/qt/QtCore/qglobalstatic.h /usr/include/qt/QtCore/qnumeric.h \
/usr/include/qt/QtCore/qversiontagging.h \
/usr/include/qt/QtGui/qtgui-config.h /usr/include/qt/QtGui/qcolor.h \
/usr/include/qt/QtGui/qrgb.h /usr/include/qt/QtCore/qnamespace.h \
/usr/include/qt/QtCore/qstringlist.h /usr/include/qt/QtCore/qlist.h \
/usr/include/qt/QtCore/qalgorithms.h /usr/include/qt/QtCore/qiterator.h \
/usr/include/qt/QtCore/qrefcount.h /usr/include/qt/QtCore/qarraydata.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/qt/QtCore/qhashfunctions.h /usr/include/qt/QtCore/qstring.h \
/usr/include/qt/QtCore/qchar.h /usr/include/qt/QtCore/qbytearray.h \
/usr/include/c++/11.1.0/stdlib.h /usr/include/c++/11.1.0/string \
/usr/include/c++/11.1.0/bits/char_traits.h \
/usr/include/c++/11.1.0/cstdint /usr/include/c++/11.1.0/bits/localefwd.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++locale.h \
/usr/include/c++/11.1.0/clocale /usr/include/locale.h \
/usr/include/bits/locale.h /usr/include/c++/11.1.0/cctype \
/usr/include/ctype.h /usr/include/c++/11.1.0/bits/ostream_insert.h \
/usr/include/c++/11.1.0/bits/cxxabi_forced.h \
/usr/include/c++/11.1.0/bits/basic_string.h \
/usr/include/c++/11.1.0/ext/string_conversions.h \
/usr/include/c++/11.1.0/cstdio /usr/include/stdio.h \
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/c++/11.1.0/cerrno \
/usr/include/errno.h /usr/include/bits/errno.h \
/usr/include/linux/errno.h /usr/include/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/bits/types/error_t.h \
/usr/include/c++/11.1.0/bits/charconv.h \
/usr/include/c++/11.1.0/bits/basic_string.tcc \
/usr/include/c++/11.1.0/iterator \
/usr/include/c++/11.1.0/bits/stream_iterator.h \
/usr/include/c++/11.1.0/bits/streambuf_iterator.h \
/usr/include/c++/11.1.0/streambuf \
/usr/include/c++/11.1.0/bits/ios_base.h \
/usr/include/c++/11.1.0/bits/locale_classes.h \
/usr/include/c++/11.1.0/bits/locale_classes.tcc \
/usr/include/c++/11.1.0/system_error \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/error_constants.h \
/usr/include/c++/11.1.0/stdexcept \
/usr/include/c++/11.1.0/bits/streambuf.tcc \
/usr/include/qt/QtCore/qstringliteral.h \
/usr/include/qt/QtCore/qstringalgorithms.h \
/usr/include/qt/QtCore/qstringview.h /usr/include/qt/QtCore/qpair.h \
/usr/include/c++/11.1.0/numeric \
/usr/include/c++/11.1.0/bits/stl_numeric.h \
/usr/include/c++/11.1.0/functional \
/usr/include/c++/11.1.0/bits/std_function.h \
/usr/include/qt/QtCore/qvector.h \
/usr/include/qt/QtCore/qcontainertools_impl.h \
/usr/include/c++/11.1.0/vector /usr/include/c++/11.1.0/bits/stl_vector.h \
/usr/include/c++/11.1.0/bits/stl_bvector.h \
/usr/include/c++/11.1.0/bits/vector.tcc /usr/include/c++/11.1.0/list \
/usr/include/c++/11.1.0/bits/stl_list.h \
/usr/include/c++/11.1.0/bits/list.tcc \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
/usr/include/bits/uio_lim.h /usr/include/qt/QtCore/qbytearraylist.h \
/usr/include/qt/QtCore/qregexp.h /usr/include/qt/QtCore/qstringmatcher.h \
/usr/include/qt/QtGui/qrgba64.h /usr/include/qt/QtGui/qpaintdevice.h \
/usr/include/qt/QtGui/qwindowdefs.h /usr/include/qt/QtCore/qobjectdefs.h \
/usr/include/qt/QtCore/qobjectdefs_impl.h /usr/include/qt/QtCore/qrect.h \
/usr/include/qt/QtCore/qmargins.h /usr/include/qt/QtCore/qsize.h \
/usr/include/qt/QtCore/qpoint.h /usr/include/qt/QtGui/qpixelformat.h \
/usr/include/qt/QtGui/qtransform.h /usr/include/qt/QtGui/qmatrix.h \
/usr/include/qt/QtGui/qpolygon.h /usr/include/qt/QtGui/qregion.h \
/usr/include/qt/QtCore/qdatastream.h \
/usr/include/qt/QtCore/qscopedpointer.h \
/usr/include/qt/QtCore/qiodevice.h /usr/include/qt/QtCore/qobject.h \
/usr/include/qt/QtCore/qmetatype.h \
/usr/include/qt/QtCore/qvarlengtharray.h \
/usr/include/qt/QtCore/qcontainerfwd.h /usr/include/c++/11.1.0/map \
/usr/include/c++/11.1.0/bits/stl_tree.h \
/usr/include/c++/11.1.0/bits/stl_map.h \
/usr/include/c++/11.1.0/bits/stl_multimap.h \
/usr/include/c++/11.1.0/bits/erase_if.h \
/usr/include/qt/QtCore/qobject_impl.h /usr/include/c++/11.1.0/chrono \
/usr/include/c++/11.1.0/ratio /usr/include/c++/11.1.0/limits \
/usr/include/c++/11.1.0/ctime \
/usr/include/c++/11.1.0/bits/parse_numbers.h \
/usr/include/qt/QtCore/qline.h /usr/include/qt/QtCore/QMargins \
/usr/include/qt/QtCore/qmargins.h /usr/include/qt/QtCore/QObject \
/usr/include/qt/QtCore/qobject.h /usr/include/qt/QtCore/QPointer \
/usr/include/qt/QtCore/qpointer.h \
/usr/include/qt/QtCore/qsharedpointer.h \
/usr/include/qt/QtCore/qshareddata.h /usr/include/qt/QtCore/qhash.h \
/usr/include/qt/QtCore/qsharedpointer_impl.h \
/usr/include/qt/QtCore/QRect /usr/include/qt/QtCore/qrect.h \
/usr/include/KDecoration2/KDecoration2/DecorationButton \
/usr/include/KDecoration2/kdecoration2/decorationbutton.h \
/usr/include/KDecoration2/kdecoration2/decorationdefines.h \
/usr/include/qt/QtCore/QVariantList /usr/include/qt/QtCore/qvariant.h \
/usr/include/qt/QtCore/qmap.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/EWIEGA46WW/../../../../src/shadowengine.h \
/usr/include/qt/QtGui/QPainter /usr/include/qt/QtGui/qpainter.h \
/usr/include/qt/QtGui/qpixmap.h /usr/include/qt/QtGui/qimage.h \
/usr/include/qt/QtGui/qtextoption.h /usr/include/qt/QtGui/qpen.h \
/usr/include/qt/QtGui/qbrush.h /usr/include/qt/QtGui/qfontinfo.h \
/usr/include/qt/QtGui/qfont.h /usr/include/qt/QtGui/qfontmetrics.h

View File

@ -1 +1 @@
/usr/bin/c++ -fPIC -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -Wdate-time -Wsuggest-override -Wlogical-op -Wl,--no-undefined -Wl,--fatal-warnings -Wl,--enable-new-dtags -shared -o kwin_smaragd.so CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o CMakeFiles/kwin_smaragd.dir/emerald.c.o CMakeFiles/kwin_smaragd.dir/main.c.o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o CMakeFiles/kwin_smaragd.dir/engines/line.c.o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o /usr/lib/libKF5ConfigCore.so.5.76.0 /usr/lib/libKF5CoreAddons.so.5.76.0 /usr/lib/libKF5WidgetsAddons.so.5.76.0 /usr/lib/libkdecorations2.so.5.20.3 -lcairo -lglib-2.0 /usr/lib/libQt5Widgets.so.5.15.2 /usr/lib/libKF5I18n.so.5.76.0 /usr/lib/libQt5Gui.so.5.15.2 /usr/lib/libQt5Core.so.5.15.2
/usr/bin/c++ -fPIC -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Wvla -Wdate-time -Wsuggest-override -Wlogical-op -Wl,--no-undefined -Wl,--fatal-warnings -Wl,--enable-new-dtags -shared -o kwin_smaragd.so CMakeFiles/kwin_smaragd.dir/kwin_smaragd_autogen/mocs_compilation.cpp.o CMakeFiles/kwin_smaragd.dir/kwin_smaragd.cpp.o CMakeFiles/kwin_smaragd.dir/emerald.c.o CMakeFiles/kwin_smaragd.dir/main.c.o CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o CMakeFiles/kwin_smaragd.dir/engines/legacy.c.o CMakeFiles/kwin_smaragd.dir/engines/line.c.o CMakeFiles/kwin_smaragd.dir/engines/oxygen.c.o CMakeFiles/kwin_smaragd.dir/engines/pixmap.c.o CMakeFiles/kwin_smaragd.dir/engines/truglass.c.o CMakeFiles/kwin_smaragd.dir/engines/vrunner.c.o CMakeFiles/kwin_smaragd.dir/engines/zootreeves.c.o /usr/lib/libKF5ConfigCore.so.5.84.0 /usr/lib/libKF5CoreAddons.so.5.84.0 /usr/lib/libKF5WidgetsAddons.so.5.84.0 /usr/lib/libkdecorations2.so.5.22.3 -lcairo -lglib-2.0 /usr/lib/libQt5Widgets.so.5.15.2 /usr/lib/libKF5I18n.so.5.84.0 /usr/lib/libQt5Gui.so.5.15.2 /usr/lib/libQt5Core.so.5.15.2

View File

@ -0,0 +1,164 @@
src/CMakeFiles/kwin_smaragd.dir/main.c.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/main.c \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/emerald.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/decoration.h \
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
/usr/include/glib-2.0/glib/gtypes.h \
/usr/lib/glib-2.0/include/glibconfig.h \
/usr/include/glib-2.0/glib/gmacros.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
/usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/float.h \
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
/usr/include/bits/time.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/types/struct_itimerspec.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/glib-2.0/glib/garray.h \
/usr/include/glib-2.0/glib/gasyncqueue.h \
/usr/include/glib-2.0/glib/gthread.h \
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/glib-2.0/glib/gbacktrace.h \
/usr/include/signal.h /usr/include/bits/signum-generic.h \
/usr/include/bits/signum-arch.h /usr/include/bits/types/sig_atomic_t.h \
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
/usr/include/bits/siginfo-consts-arch.h \
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
/usr/include/glib-2.0/glib/gbase64.h \
/usr/include/glib-2.0/glib/gbitlock.h \
/usr/include/glib-2.0/glib/gbookmarkfile.h \
/usr/include/glib-2.0/glib/gdatetime.h \
/usr/include/glib-2.0/glib/gtimezone.h \
/usr/include/glib-2.0/glib/gbytes.h \
/usr/include/glib-2.0/glib/gcharset.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/gconvert.h \
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
/usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \
/usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \
/usr/include/glib-2.0/glib/genviron.h \
/usr/include/glib-2.0/glib/gfileutils.h \
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
/usr/include/glib-2.0/glib/gchecksum.h \
/usr/include/glib-2.0/glib/ghook.h \
/usr/include/glib-2.0/glib/ghostutils.h \
/usr/include/glib-2.0/glib/giochannel.h \
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
/usr/include/glib-2.0/glib/gunicode.h \
/usr/include/glib-2.0/glib/gkeyfile.h \
/usr/include/glib-2.0/glib/gmappedfile.h \
/usr/include/glib-2.0/glib/gmarkup.h \
/usr/include/glib-2.0/glib/gmessages.h \
/usr/include/glib-2.0/glib/gvariant.h \
/usr/include/glib-2.0/glib/gvarianttype.h \
/usr/include/glib-2.0/glib/goption.h \
/usr/include/glib-2.0/glib/gpattern.h \
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
/usr/include/glib-2.0/glib/grcbox.h \
/usr/include/glib-2.0/glib/grefcount.h \
/usr/include/glib-2.0/glib/grefstring.h \
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
/usr/include/glib-2.0/glib/gregex.h \
/usr/include/glib-2.0/glib/gscanner.h \
/usr/include/glib-2.0/glib/gsequence.h \
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/glib-2.0/glib/gspawn.h \
/usr/include/glib-2.0/glib/gstrfuncs.h \
/usr/include/glib-2.0/glib/gstringchunk.h \
/usr/include/glib-2.0/glib/gstrvbuilder.h \
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/errno.h \
/usr/include/bits/errno.h /usr/include/linux/errno.h \
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \
/usr/include/glib-2.0/glib/gthreadpool.h \
/usr/include/glib-2.0/glib/gtimer.h \
/usr/include/glib-2.0/glib/gtrashstack.h \
/usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
/usr/include/glib-2.0/glib/deprecated/gcache.h \
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
/usr/include/glib-2.0/glib/deprecated/gmain.h \
/usr/include/glib-2.0/glib/deprecated/grel.h \
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/glib-2.0/glib/glib-autocleanups.h \
/usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
/usr/include/cairo/cairo-features.h \
/usr/include/cairo/cairo-deprecated.h /usr/include/cairo/cairo-xlib.h \
/usr/include/cairo/cairo.h /usr/include/X11/Xlib.h /usr/include/X11/X.h \
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
/usr/include/glib-2.0/glib/gstdio.h /usr/include/glib-2.0/glib/gprintf.h \
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/sys/stat.h \
/usr/include/bits/stat.h /usr/include/bits/struct_stat.h \
/usr/include/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \
/usr/include/linux/posix_types.h /usr/include/linux/stddef.h \
/usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \
/usr/include/bits/types/struct_statx_timestamp.h \
/usr/include/bits/types/struct_statx.h /usr/include/math.h \
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h /usr/include/unistd.h \
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
/usr/include/sys/wait.h /usr/include/libintl.h /usr/include/locale.h \
/usr/include/bits/locale.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/titlebar.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/engine.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/include/libengine.h

View File

@ -0,0 +1,225 @@
src/CMakeFiles/kwin_smaragd.dir/shadowengine.cpp.o: \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/shadowengine.cpp \
/usr/include/stdc-predef.h \
/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window\ Manager/smaragd-0.1.1/src/shadowengine.h \
/usr/include/qt/QtGui/QPainter /usr/include/qt/QtGui/qpainter.h \
/usr/include/qt/QtGui/qtguiglobal.h /usr/include/qt/QtCore/qglobal.h \
/usr/include/c++/11.1.0/type_traits \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++config.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/os_defines.h \
/usr/include/features.h /usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
/usr/include/c++/11.1.0/cstddef \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stddef.h \
/usr/include/c++/11.1.0/utility \
/usr/include/c++/11.1.0/bits/stl_relops.h \
/usr/include/c++/11.1.0/bits/stl_pair.h \
/usr/include/c++/11.1.0/bits/move.h \
/usr/include/c++/11.1.0/initializer_list /usr/include/assert.h \
/usr/include/qt/QtCore/qconfig.h /usr/include/qt/QtCore/qtcore-config.h \
/usr/include/qt/QtCore/qsystemdetection.h \
/usr/include/qt/QtCore/qprocessordetection.h \
/usr/include/qt/QtCore/qcompilerdetection.h \
/usr/include/c++/11.1.0/algorithm \
/usr/include/c++/11.1.0/bits/stl_algobase.h \
/usr/include/c++/11.1.0/bits/functexcept.h \
/usr/include/c++/11.1.0/bits/exception_defines.h \
/usr/include/c++/11.1.0/bits/cpp_type_traits.h \
/usr/include/c++/11.1.0/ext/type_traits.h \
/usr/include/c++/11.1.0/ext/numeric_traits.h \
/usr/include/c++/11.1.0/bits/stl_iterator_base_types.h \
/usr/include/c++/11.1.0/bits/stl_iterator_base_funcs.h \
/usr/include/c++/11.1.0/bits/concept_check.h \
/usr/include/c++/11.1.0/debug/assertions.h \
/usr/include/c++/11.1.0/bits/stl_iterator.h \
/usr/include/c++/11.1.0/bits/ptr_traits.h \
/usr/include/c++/11.1.0/debug/debug.h \
/usr/include/c++/11.1.0/bits/predefined_ops.h \
/usr/include/c++/11.1.0/bits/stl_algo.h /usr/include/c++/11.1.0/cstdlib \
/usr/include/stdlib.h /usr/include/bits/libc-header-start.h \
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
/usr/include/sys/types.h /usr/include/bits/types.h \
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
/usr/include/endian.h /usr/include/bits/endian.h \
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-float.h /usr/include/c++/11.1.0/bits/std_abs.h \
/usr/include/c++/11.1.0/bits/algorithmfwd.h \
/usr/include/c++/11.1.0/bits/stl_heap.h \
/usr/include/c++/11.1.0/bits/stl_tempbuf.h \
/usr/include/c++/11.1.0/bits/stl_construct.h /usr/include/c++/11.1.0/new \
/usr/include/c++/11.1.0/bits/exception.h \
/usr/include/c++/11.1.0/bits/uniform_int_dist.h \
/usr/include/qt/QtCore/qtypeinfo.h /usr/include/qt/QtCore/qsysinfo.h \
/usr/include/qt/QtCore/qlogging.h /usr/include/qt/QtCore/qflags.h \
/usr/include/qt/QtCore/qatomic.h /usr/include/qt/QtCore/qbasicatomic.h \
/usr/include/qt/QtCore/qatomic_cxx11.h \
/usr/include/qt/QtCore/qgenericatomic.h /usr/include/c++/11.1.0/atomic \
/usr/include/c++/11.1.0/bits/atomic_base.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdint.h \
/usr/include/stdint.h /usr/include/bits/wchar.h \
/usr/include/bits/stdint-uintn.h \
/usr/include/c++/11.1.0/bits/atomic_lockfree_defines.h \
/usr/include/qt/QtCore/qglobalstatic.h /usr/include/qt/QtCore/qnumeric.h \
/usr/include/qt/QtCore/qversiontagging.h \
/usr/include/qt/QtGui/qtgui-config.h /usr/include/qt/QtCore/qnamespace.h \
/usr/include/qt/QtCore/qrect.h /usr/include/qt/QtCore/qmargins.h \
/usr/include/qt/QtCore/qsize.h /usr/include/qt/QtCore/qpoint.h \
/usr/include/qt/QtCore/qscopedpointer.h /usr/include/c++/11.1.0/stdlib.h \
/usr/include/qt/QtGui/qpixmap.h /usr/include/qt/QtGui/qpaintdevice.h \
/usr/include/qt/QtGui/qwindowdefs.h /usr/include/qt/QtCore/qobjectdefs.h \
/usr/include/qt/QtCore/qobjectdefs_impl.h /usr/include/qt/QtGui/qcolor.h \
/usr/include/qt/QtGui/qrgb.h /usr/include/qt/QtCore/qstringlist.h \
/usr/include/qt/QtCore/qlist.h /usr/include/qt/QtCore/qalgorithms.h \
/usr/include/qt/QtCore/qiterator.h /usr/include/qt/QtCore/qrefcount.h \
/usr/include/qt/QtCore/qarraydata.h /usr/include/string.h \
/usr/include/strings.h /usr/include/qt/QtCore/qhashfunctions.h \
/usr/include/qt/QtCore/qstring.h /usr/include/qt/QtCore/qchar.h \
/usr/include/qt/QtCore/qbytearray.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include/stdarg.h \
/usr/include/c++/11.1.0/string /usr/include/c++/11.1.0/bits/stringfwd.h \
/usr/include/c++/11.1.0/bits/memoryfwd.h \
/usr/include/c++/11.1.0/bits/char_traits.h \
/usr/include/c++/11.1.0/bits/postypes.h /usr/include/c++/11.1.0/cwchar \
/usr/include/wchar.h /usr/include/bits/types/wint_t.h \
/usr/include/bits/types/mbstate_t.h \
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/c++/11.1.0/cstdint \
/usr/include/c++/11.1.0/bits/allocator.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
/usr/include/c++/11.1.0/ext/new_allocator.h \
/usr/include/c++/11.1.0/bits/localefwd.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++locale.h \
/usr/include/c++/11.1.0/clocale /usr/include/locale.h \
/usr/include/bits/locale.h /usr/include/c++/11.1.0/iosfwd \
/usr/include/c++/11.1.0/cctype /usr/include/ctype.h \
/usr/include/c++/11.1.0/bits/ostream_insert.h \
/usr/include/c++/11.1.0/bits/cxxabi_forced.h \
/usr/include/c++/11.1.0/bits/stl_function.h \
/usr/include/c++/11.1.0/backward/binders.h \
/usr/include/c++/11.1.0/bits/range_access.h \
/usr/include/c++/11.1.0/bits/basic_string.h \
/usr/include/c++/11.1.0/ext/atomicity.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
/usr/include/sys/single_threaded.h \
/usr/include/c++/11.1.0/ext/alloc_traits.h \
/usr/include/c++/11.1.0/bits/alloc_traits.h \
/usr/include/c++/11.1.0/ext/string_conversions.h \
/usr/include/c++/11.1.0/cstdio /usr/include/stdio.h \
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/c++/11.1.0/cerrno \
/usr/include/errno.h /usr/include/bits/errno.h \
/usr/include/linux/errno.h /usr/include/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/bits/types/error_t.h \
/usr/include/c++/11.1.0/bits/charconv.h \
/usr/include/c++/11.1.0/bits/functional_hash.h \
/usr/include/c++/11.1.0/bits/hash_bytes.h \
/usr/include/c++/11.1.0/bits/basic_string.tcc \
/usr/include/c++/11.1.0/iterator \
/usr/include/c++/11.1.0/bits/stream_iterator.h \
/usr/include/c++/11.1.0/bits/streambuf_iterator.h \
/usr/include/c++/11.1.0/streambuf \
/usr/include/c++/11.1.0/bits/ios_base.h \
/usr/include/c++/11.1.0/bits/locale_classes.h \
/usr/include/c++/11.1.0/bits/locale_classes.tcc \
/usr/include/c++/11.1.0/system_error \
/usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/error_constants.h \
/usr/include/c++/11.1.0/stdexcept /usr/include/c++/11.1.0/exception \
/usr/include/c++/11.1.0/bits/exception_ptr.h \
/usr/include/c++/11.1.0/bits/cxxabi_init_exception.h \
/usr/include/c++/11.1.0/typeinfo \
/usr/include/c++/11.1.0/bits/nested_exception.h \
/usr/include/c++/11.1.0/bits/streambuf.tcc \
/usr/include/qt/QtCore/qstringliteral.h \
/usr/include/qt/QtCore/qstringalgorithms.h \
/usr/include/qt/QtCore/qstringview.h /usr/include/qt/QtCore/qpair.h \
/usr/include/c++/11.1.0/numeric \
/usr/include/c++/11.1.0/bits/stl_numeric.h \
/usr/include/c++/11.1.0/functional /usr/include/c++/11.1.0/tuple \
/usr/include/c++/11.1.0/array \
/usr/include/c++/11.1.0/bits/uses_allocator.h \
/usr/include/c++/11.1.0/bits/invoke.h \
/usr/include/c++/11.1.0/bits/refwrap.h \
/usr/include/c++/11.1.0/bits/std_function.h \
/usr/include/qt/QtCore/qvector.h \
/usr/include/qt/QtCore/qcontainertools_impl.h \
/usr/include/c++/11.1.0/vector \
/usr/include/c++/11.1.0/bits/stl_uninitialized.h \
/usr/include/c++/11.1.0/bits/stl_vector.h \
/usr/include/c++/11.1.0/bits/stl_bvector.h \
/usr/include/c++/11.1.0/bits/vector.tcc /usr/include/c++/11.1.0/list \
/usr/include/c++/11.1.0/bits/stl_list.h \
/usr/include/c++/11.1.0/bits/allocated_ptr.h \
/usr/include/c++/11.1.0/ext/aligned_buffer.h \
/usr/include/c++/11.1.0/bits/list.tcc \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/limits.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
/usr/include/bits/uio_lim.h /usr/include/qt/QtCore/qbytearraylist.h \
/usr/include/qt/QtCore/qregexp.h /usr/include/qt/QtCore/qstringmatcher.h \
/usr/include/qt/QtGui/qrgba64.h /usr/include/qt/QtCore/qsharedpointer.h \
/usr/include/qt/QtCore/qshareddata.h /usr/include/qt/QtCore/qhash.h \
/usr/include/qt/QtCore/qsharedpointer_impl.h \
/usr/include/qt/QtCore/qobject.h /usr/include/qt/QtCore/qmetatype.h \
/usr/include/qt/QtCore/qvarlengtharray.h \
/usr/include/qt/QtCore/qcontainerfwd.h /usr/include/c++/11.1.0/map \
/usr/include/c++/11.1.0/bits/stl_tree.h \
/usr/include/c++/11.1.0/bits/stl_map.h \
/usr/include/c++/11.1.0/bits/stl_multimap.h \
/usr/include/c++/11.1.0/bits/erase_if.h \
/usr/include/qt/QtCore/qobject_impl.h /usr/include/c++/11.1.0/chrono \
/usr/include/c++/11.1.0/ratio /usr/include/c++/11.1.0/limits \
/usr/include/c++/11.1.0/ctime \
/usr/include/c++/11.1.0/bits/parse_numbers.h \
/usr/include/c++/11.1.0/memory \
/usr/include/c++/11.1.0/bits/stl_raw_storage_iter.h \
/usr/include/c++/11.1.0/bits/align.h /usr/include/c++/11.1.0/bit \
/usr/include/c++/11.1.0/bits/unique_ptr.h \
/usr/include/c++/11.1.0/bits/shared_ptr.h \
/usr/include/c++/11.1.0/bits/shared_ptr_base.h \
/usr/include/c++/11.1.0/ext/concurrence.h \
/usr/include/c++/11.1.0/bits/shared_ptr_atomic.h \
/usr/include/c++/11.1.0/backward/auto_ptr.h \
/usr/include/qt/QtGui/qimage.h /usr/include/qt/QtGui/qpixelformat.h \
/usr/include/qt/QtGui/qtransform.h /usr/include/qt/QtGui/qmatrix.h \
/usr/include/qt/QtGui/qpolygon.h /usr/include/qt/QtGui/qregion.h \
/usr/include/qt/QtCore/qdatastream.h /usr/include/qt/QtCore/qiodevice.h \
/usr/include/qt/QtCore/qline.h /usr/include/qt/QtGui/qtextoption.h \
/usr/include/qt/QtGui/qpen.h /usr/include/qt/QtGui/qbrush.h \
/usr/include/qt/QtGui/qfontinfo.h /usr/include/qt/QtGui/qfont.h \
/usr/include/qt/QtGui/qfontmetrics.h /usr/include/qt/QtGui/QImage \
/usr/include/qt/QtGui/qimage.h /usr/include/c++/11.1.0/cmath \
/usr/include/math.h /usr/include/bits/math-vector.h \
/usr/include/bits/libm-simd-decl-stubs.h \
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
/usr/include/bits/fp-fast.h \
/usr/include/bits/mathcalls-helper-functions.h \
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
/usr/include/bits/iscanonical.h

View File

@ -1,29 +1,34 @@
{
"BUILD_DIR" : "/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen",
"CMAKE_BINARY_DIR" : "/home/boki/Downloads/smaragd-0.1.1/build",
"CMAKE_CURRENT_BINARY_DIR" : "/home/boki/Downloads/smaragd-0.1.1/build/src",
"CMAKE_CURRENT_SOURCE_DIR" : "/home/boki/Downloads/smaragd-0.1.1/src",
"BUILD_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen",
"CMAKE_BINARY_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build",
"CMAKE_CURRENT_BINARY_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src",
"CMAKE_CURRENT_SOURCE_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src",
"CMAKE_EXECUTABLE" : "/usr/bin/cmake",
"CMAKE_LIST_FILES" : [ "/home/boki/Downloads/smaragd-0.1.1/src/CMakeLists.txt" ],
"CMAKE_SOURCE_DIR" : "/home/boki/Downloads/smaragd-0.1.1",
"CMAKE_LIST_FILES" :
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/CMakeLists.txt"
],
"CMAKE_SOURCE_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1",
"DEP_FILE" : "",
"DEP_FILE_RULE_NAME" : "",
"HEADERS" :
[
[
"/home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.h",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.h",
"Mu",
"EWIEGA46WW/moc_kwin_smaragd.cpp"
"EWIEGA46WW/moc_kwin_smaragd.cpp",
null
],
[
"/home/boki/Downloads/smaragd-0.1.1/src/shadowengine.h",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.h",
"Mu",
"EWIEGA46WW/moc_shadowengine.cpp"
"EWIEGA46WW/moc_shadowengine.cpp",
null
]
],
"HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ],
"INCLUDE_DIR" : "/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include",
"MOC_COMPILATION_FILE" : "/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp",
"INCLUDE_DIR" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/include",
"MOC_COMPILATION_FILE" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/mocs_compilation.cpp",
"MOC_DEFINITIONS" :
[
"KCOREADDONS_LIB",
@ -52,11 +57,11 @@
],
"MOC_INCLUDES" :
[
"/home/boki/Downloads/smaragd-0.1.1/build/src",
"/home/boki/Downloads/smaragd-0.1.1/src",
"/home/boki/Downloads/smaragd-0.1.1/build",
"/home/boki/Downloads/smaragd-0.1.1/src/include",
"/home/boki/Downloads/smaragd-0.1.1/src/engines",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/include",
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines",
"/usr/include/cairo",
"/usr/include/glib-2.0",
"/usr/lib/glib-2.0/include",
@ -71,12 +76,12 @@
"/usr/include/KF5/KI18n",
"/usr/include/KF5/KWidgetsAddons",
"/usr/include/KDecoration2",
"/usr/include/c++/10.2.0",
"/usr/include/c++/10.2.0/x86_64-pc-linux-gnu",
"/usr/include/c++/10.2.0/backward",
"/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include",
"/usr/include/c++/11.1.0",
"/usr/include/c++/11.1.0/x86_64-pc-linux-gnu",
"/usr/include/c++/11.1.0/backward",
"/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include",
"/usr/local/include",
"/usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/include-fixed",
"/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/include-fixed",
"/usr/include"
],
"MOC_MACRO_NAMES" :
@ -97,32 +102,79 @@
"-dM",
"-E",
"-c",
"/usr/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.21/Modules/CMakeCXXCompilerABI.cpp"
],
"MOC_PREDEFS_FILE" : "/home/boki/Downloads/smaragd-0.1.1/build/src/kwin_smaragd_autogen/moc_predefs.h",
"MOC_PREDEFS_FILE" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/kwin_smaragd_autogen/moc_predefs.h",
"MOC_RELAXED_MODE" : false,
"MOC_SKIP" : [],
"MOC_SKIP" :
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/ui_kwin_smaragd_dialog.h"
],
"MULTI_CONFIG" : false,
"PARALLEL" : 2,
"PARSE_CACHE_FILE" : "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir/ParseCache.txt",
"PARSE_CACHE_FILE" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir/ParseCache.txt",
"QT_MOC_EXECUTABLE" : "/usr/bin/moc",
"QT_UIC_EXECUTABLE" : "",
"QT_VERSION_MAJOR" : 5,
"QT_VERSION_MINOR" : 15,
"SETTINGS_FILE" : "/home/boki/Downloads/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir/AutogenUsed.txt",
"SETTINGS_FILE" : "/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/build/src/CMakeFiles/kwin_smaragd_autogen.dir/AutogenUsed.txt",
"SOURCES" :
[
[ "/home/boki/Downloads/smaragd-0.1.1/src/emerald.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/legacy.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/line.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/oxygen.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/pixmap.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/truglass.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/vrunner.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/engines/zootreeves.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/kwin_smaragd.cpp", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/main.c", "Mu" ],
[ "/home/boki/Downloads/smaragd-0.1.1/src/shadowengine.cpp", "Mu" ]
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/emerald.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/legacy.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/line.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/oxygen.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/pixmap.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/truglass.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/vrunner.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/engines/zootreeves.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/kwin_smaragd.cpp",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/main.c",
"Mu",
null
],
[
"/mnt/731b17da-2f45-4ded-b563-c94773bf847d/home/anon/Desktop/Aero_Theme/Window Manager/smaragd-0.1.1/src/shadowengine.cpp",
"Mu",
null
]
],
"VERBOSITY" : 0
}

View File

@ -1 +1 @@
moc:74ec96955ddb21d9befad57a1432bab4208425d56ec996c9e2893a7e62fd2812
moc:7ee2c6b86ee0b7605145306f77f617642cc32d3ee9ef883eb0e85f8f069f5b3c

View File

@ -1,7 +1,14 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES

Some files were not shown because too many files have changed in this diff Show More