Initial Commit with basic QT window up - SSL Connectivity, and chat functionality.
This commit is contained in:
commit
4209b3776f
53
CMakeLists.txt
Normal file
53
CMakeLists.txt
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
project(ScarChat CXX)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
set(CMAKE_AUTORCC ON)
|
||||||
|
set(CMAKE_AUTOUIC ON)
|
||||||
|
|
||||||
|
# Find required packages
|
||||||
|
find_package(OpenSSL REQUIRED)
|
||||||
|
|
||||||
|
# Server binary (Linux/cross-platform)
|
||||||
|
add_executable(chat_server
|
||||||
|
src/server/server.cpp
|
||||||
|
)
|
||||||
|
target_link_libraries(chat_server PRIVATE OpenSSL::SSL OpenSSL::Crypto)
|
||||||
|
target_compile_options(chat_server PRIVATE -Wall -Wextra -std=c++17)
|
||||||
|
|
||||||
|
# Qt Client binary (Linux/cross-platform)
|
||||||
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
||||||
|
|
||||||
|
add_executable(chat_client_qt
|
||||||
|
src/qt_client/main.cpp
|
||||||
|
)
|
||||||
|
target_link_libraries(chat_client_qt PRIVATE
|
||||||
|
Qt5::Core
|
||||||
|
Qt5::Gui
|
||||||
|
Qt5::Widgets
|
||||||
|
Qt5::Network
|
||||||
|
OpenSSL::SSL
|
||||||
|
OpenSSL::Crypto
|
||||||
|
)
|
||||||
|
target_compile_options(chat_client_qt PRIVATE -Wall -Wextra -std=c++17)
|
||||||
|
|
||||||
|
# Windows Client binary (Windows-only)
|
||||||
|
if(WIN32)
|
||||||
|
add_executable(chat_client_win WIN32
|
||||||
|
src/windows_client/main_win.cpp
|
||||||
|
)
|
||||||
|
target_link_libraries(chat_client_win PRIVATE
|
||||||
|
ws2_32
|
||||||
|
crypt32
|
||||||
|
)
|
||||||
|
target_compile_options(chat_client_win PRIVATE /W4)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Installation targets
|
||||||
|
install(TARGETS chat_server DESTINATION bin)
|
||||||
|
install(TARGETS chat_client_qt DESTINATION bin)
|
||||||
|
if(WIN32)
|
||||||
|
install(TARGETS chat_client_win DESTINATION bin)
|
||||||
|
endif()
|
||||||
229
README.md
Normal file
229
README.md
Normal file
@ -0,0 +1,229 @@
|
|||||||
|
# SCAR Chat Application
|
||||||
|
|
||||||
|
A cross-platform GUI chat client and server with SSL/TLS encryption, built in C++.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
### Server (`chat_server`)
|
||||||
|
- Listens on TCP port **42317** with TLS/SSL encryption
|
||||||
|
- Multi-client support with broadcast messaging
|
||||||
|
- Uses OpenSSL for secure communication
|
||||||
|
- Linux/cross-platform compatible
|
||||||
|
|
||||||
|
### Qt Client (`chat_client_qt`)
|
||||||
|
- Cross-platform GUI using Qt5/6 Widgets
|
||||||
|
- TLS/SSL encrypted connection to server
|
||||||
|
- **Customizable UI:**
|
||||||
|
- Background color selector for all windows
|
||||||
|
- Chat text color customization
|
||||||
|
- Transparency/opacity slider (0-100%)
|
||||||
|
- Message history display
|
||||||
|
- Real-time message sending and receiving
|
||||||
|
- Linux/cross-platform compatible
|
||||||
|
|
||||||
|
### Windows Client (`chat_client_win`)
|
||||||
|
- Native Win32 GUI client
|
||||||
|
- Same UI features as Qt client
|
||||||
|
- Windows-only build
|
||||||
|
|
||||||
|
## Prerequisites
|
||||||
|
|
||||||
|
### Linux / macOS
|
||||||
|
```bash
|
||||||
|
# Ubuntu/Debian
|
||||||
|
sudo apt-get install cmake qtbase5-dev libssl-dev build-essential
|
||||||
|
|
||||||
|
# macOS (Homebrew)
|
||||||
|
brew install cmake qt5 openssl
|
||||||
|
```
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
- Visual Studio 2019+ or MinGW
|
||||||
|
- CMake 3.16+
|
||||||
|
- Qt5/6 SDK
|
||||||
|
- OpenSSL for Windows (vcpkg or prebuilt binaries)
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
### Linux / macOS
|
||||||
|
|
||||||
|
1. **Create and generate certificates:**
|
||||||
|
```bash
|
||||||
|
cd certs
|
||||||
|
./generate_certs.sh
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Build the project:**
|
||||||
|
```bash
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Install (optional):**
|
||||||
|
```bash
|
||||||
|
make install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
|
||||||
|
1. **Generate certificates** (use OpenSSL for Windows or WSL):
|
||||||
|
```bash
|
||||||
|
cd certs
|
||||||
|
# On Windows, use Git Bash or WSL to run generate_certs.sh
|
||||||
|
# Or generate manually using OpenSSL
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Build:**
|
||||||
|
```bash
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -G "Visual Studio 16 2019" ..
|
||||||
|
cmake --build . --config Release
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running
|
||||||
|
|
||||||
|
### Server
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Linux / macOS
|
||||||
|
./build/chat_server certs/server.crt certs/server.key
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
.\build\Release\chat_server.exe certs\server.crt certs\server.key
|
||||||
|
```
|
||||||
|
|
||||||
|
The server will listen on `localhost:42317`.
|
||||||
|
|
||||||
|
### Qt Client
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Linux / macOS
|
||||||
|
./build/chat_client_qt
|
||||||
|
|
||||||
|
# Windows (if built on Windows)
|
||||||
|
.\build\Release\chat_client_qt.exe
|
||||||
|
```
|
||||||
|
|
||||||
|
Connect to server by entering host/port and clicking "Connect".
|
||||||
|
|
||||||
|
### Windows Client
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Windows only
|
||||||
|
.\build\Release\chat_client_win.exe
|
||||||
|
```
|
||||||
|
|
||||||
|
## Customization Features
|
||||||
|
|
||||||
|
### Background Color
|
||||||
|
- Click "BG Color" button to select background color for all windows
|
||||||
|
- Color choice is applied immediately
|
||||||
|
|
||||||
|
### Text Color
|
||||||
|
- Click "Text Color" button to select chat text color
|
||||||
|
- Updates chat display in real-time
|
||||||
|
|
||||||
|
### Transparency
|
||||||
|
- Use the transparency slider (0-100%) to adjust window opacity
|
||||||
|
- 0% = fully transparent, 100% = fully opaque
|
||||||
|
|
||||||
|
## SSL/TLS Certificates
|
||||||
|
|
||||||
|
### Generate Self-Signed Certificates
|
||||||
|
|
||||||
|
For development and testing:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd certs
|
||||||
|
|
||||||
|
# Generate private key
|
||||||
|
openssl genrsa -out server.key 2048
|
||||||
|
|
||||||
|
# Generate certificate (valid for 365 days)
|
||||||
|
openssl req -new -x509 -key server.key -out server.crt -days 365 \
|
||||||
|
-subj "/C=US/ST=State/L=City/O=SCAR/CN=localhost"
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
**Note:** For production, use certificates signed by a trusted Certificate Authority (CA).
|
||||||
|
|
||||||
|
### Ignoring Self-Signed Certificates
|
||||||
|
|
||||||
|
The Qt client is configured to ignore self-signed certificate errors during development:
|
||||||
|
```cpp
|
||||||
|
socket->ignoreSslErrors();
|
||||||
|
```
|
||||||
|
|
||||||
|
For production, implement proper certificate validation.
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
scar-chat/
|
||||||
|
├── CMakeLists.txt # Top-level CMake configuration
|
||||||
|
├── README.md # This file
|
||||||
|
├── certs/ # SSL certificates directory
|
||||||
|
│ └── generate_certs.sh # Certificate generation script
|
||||||
|
├── src/
|
||||||
|
│ ├── server/
|
||||||
|
│ │ └── server.cpp # TLS server (OpenSSL)
|
||||||
|
│ ├── qt_client/
|
||||||
|
│ │ └── main.cpp # Qt GUI client
|
||||||
|
│ └── windows_client/
|
||||||
|
│ └── main_win.cpp # Win32 GUI client
|
||||||
|
└── build/ # Build output directory (created after cmake)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
### "Connection refused" error
|
||||||
|
- Ensure server is running on the same host/port
|
||||||
|
- Check firewall settings on port 42317
|
||||||
|
|
||||||
|
### SSL/TLS errors
|
||||||
|
- Verify certificates exist in `certs/` directory
|
||||||
|
- Regenerate certificates if expired or corrupted
|
||||||
|
- Ensure certificate and key files are readable
|
||||||
|
|
||||||
|
### Qt not found during CMake
|
||||||
|
```bash
|
||||||
|
# Set Qt path explicitly
|
||||||
|
cmake -DQt5_DIR=/path/to/Qt5/lib/cmake/Qt5 ..
|
||||||
|
```
|
||||||
|
|
||||||
|
### OpenSSL not found during CMake
|
||||||
|
```bash
|
||||||
|
# Set OpenSSL path explicitly (macOS example)
|
||||||
|
cmake -DOPENSSL_DIR=/usr/local/opt/openssl ..
|
||||||
|
```
|
||||||
|
|
||||||
|
## Development Notes
|
||||||
|
|
||||||
|
- **C++17** standard is required
|
||||||
|
- **Qt5/6** for cross-platform GUI
|
||||||
|
- **OpenSSL 1.1+** for TLS/SSL
|
||||||
|
- Threading used for non-blocking socket operations
|
||||||
|
- Message protocol: simple newline-delimited UTF-8 text
|
||||||
|
|
||||||
|
## Security Considerations
|
||||||
|
|
||||||
|
- ✅ Uses TLS 1.2+ for encrypted communication
|
||||||
|
- ⚠️ Development mode: ignores self-signed certificate errors
|
||||||
|
- ⚠️ No user authentication implemented
|
||||||
|
- ⚠️ No message encryption at application level (relies on TLS)
|
||||||
|
|
||||||
|
For production use, implement:
|
||||||
|
- Proper certificate validation
|
||||||
|
- User authentication and authorization
|
||||||
|
- Message signing/verification
|
||||||
|
- Rate limiting and DoS protection
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project is provided as-is for educational and development purposes.
|
||||||
432
build/CMakeCache.txt
Normal file
432
build/CMakeCache.txt
Normal file
@ -0,0 +1,432 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/ganome/Projects/SCAR-719/repos/scar-chat/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.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//CXX compiler
|
||||||
|
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during all build types.
|
||||||
|
CMAKE_CXX_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=/usr/lib/llvm/20/bin/dlltool
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_COMPAT_VERSION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=ScarChat
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the archiver during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the archiver during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the archiver during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the archiver during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the archiver during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib64/libcrypto.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
OPENSSL_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib64/libssl.so
|
||||||
|
|
||||||
|
//Arguments to supply to pkg-config
|
||||||
|
PKG_CONFIG_ARGN:STRING=
|
||||||
|
|
||||||
|
//pkg-config executable
|
||||||
|
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for Qt5Core.
|
||||||
|
Qt5Core_DIR:PATH=/usr/lib64/cmake/Qt5Core
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for Qt5Gui.
|
||||||
|
Qt5Gui_DIR:PATH=/usr/lib64/cmake/Qt5Gui
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for Qt5Network.
|
||||||
|
Qt5Network_DIR:PATH=/usr/lib64/cmake/Qt5Network
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for Qt5Widgets.
|
||||||
|
Qt5Widgets_DIR:PATH=/usr/lib64/cmake/Qt5Widgets
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for Qt5.
|
||||||
|
Qt5_DIR:PATH=/usr/lib64/cmake/Qt5
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
ScarChat_BINARY_DIR:STATIC=/home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
ScarChat_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
ScarChat_SOURCE_DIR:STATIC=/home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib__OPENSSL_crypto:FILEPATH=/usr/lib64/libcrypto.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib__OPENSSL_ssl:FILEPATH=/usr/lib64/libssl.so
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
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/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=1
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||||
|
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//Name of CMakeLists files to read
|
||||||
|
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
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
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_TAPI
|
||||||
|
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding OpenSSL
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib64/libcrypto.so][/usr/include][ ][v3.5.4()]
|
||||||
|
//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY
|
||||||
|
OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENSSL_INCLUDE_DIR
|
||||||
|
OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENSSL_SSL_LIBRARY
|
||||||
|
OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: PKG_CONFIG_ARGN
|
||||||
|
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
||||||
|
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
_OPENSSL_CFLAGS:INTERNAL=-I/usr/include
|
||||||
|
_OPENSSL_CFLAGS_I:INTERNAL=
|
||||||
|
_OPENSSL_CFLAGS_OTHER:INTERNAL=
|
||||||
|
_OPENSSL_FOUND:INTERNAL=1
|
||||||
|
_OPENSSL_INCLUDEDIR:INTERNAL=/usr/include
|
||||||
|
_OPENSSL_INCLUDE_DIRS:INTERNAL=/usr/include
|
||||||
|
_OPENSSL_LDFLAGS:INTERNAL=-L/usr/lib64;-lssl;-lcrypto
|
||||||
|
_OPENSSL_LDFLAGS_OTHER:INTERNAL=
|
||||||
|
_OPENSSL_LIBDIR:INTERNAL=/usr/lib64
|
||||||
|
_OPENSSL_LIBRARIES:INTERNAL=ssl;crypto
|
||||||
|
_OPENSSL_LIBRARY_DIRS:INTERNAL=/usr/lib64
|
||||||
|
_OPENSSL_LIBS:INTERNAL=
|
||||||
|
_OPENSSL_LIBS_L:INTERNAL=
|
||||||
|
_OPENSSL_LIBS_OTHER:INTERNAL=
|
||||||
|
_OPENSSL_LIBS_PATHS:INTERNAL=
|
||||||
|
_OPENSSL_MODULE_NAME:INTERNAL=openssl
|
||||||
|
_OPENSSL_PREFIX:INTERNAL=/usr
|
||||||
|
_OPENSSL_STATIC_CFLAGS:INTERNAL=-I/usr/include
|
||||||
|
_OPENSSL_STATIC_CFLAGS_I:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include
|
||||||
|
_OPENSSL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib64;-lssl;-lcrypto;-ldl;-pthread;-Wl,--push-state,--as-needed,-latomic,--pop-state
|
||||||
|
_OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-Wl,--push-state,--as-needed,-latomic,--pop-state
|
||||||
|
_OPENSSL_STATIC_LIBDIR:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;crypto;dl
|
||||||
|
_OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib64
|
||||||
|
_OPENSSL_STATIC_LIBS:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_LIBS_L:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_LIBS_OTHER:INTERNAL=
|
||||||
|
_OPENSSL_STATIC_LIBS_PATHS:INTERNAL=
|
||||||
|
_OPENSSL_VERSION:INTERNAL=3.5.4
|
||||||
|
_OPENSSL_openssl_INCLUDEDIR:INTERNAL=
|
||||||
|
_OPENSSL_openssl_LIBDIR:INTERNAL=
|
||||||
|
_OPENSSL_openssl_PREFIX:INTERNAL=
|
||||||
|
_OPENSSL_openssl_VERSION:INTERNAL=
|
||||||
|
__pkg_config_arguments__OPENSSL:INTERNAL=QUIET;openssl
|
||||||
|
__pkg_config_checked__OPENSSL:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib__OPENSSL_crypto
|
||||||
|
pkgcfg_lib__OPENSSL_crypto-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib__OPENSSL_ssl
|
||||||
|
pkgcfg_lib__OPENSSL_ssl-ADVANCED:INTERNAL=1
|
||||||
|
prefix_result:INTERNAL=/usr/lib64
|
||||||
|
|
||||||
108
build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
Normal file
108
build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "15.2.1")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||||
|
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;cxx_std_26")
|
||||||
|
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_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER "/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../x86_64-pc-linux-gnu/bin/ld")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.45.0)
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU)
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE)
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||||
|
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||||
|
|
||||||
|
# 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)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15;/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu;/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/15/include;/usr/local/include;/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/15;/usr/lib64;/lib64;/usr/x86_64-pc-linux-gnu/lib;/usr/lib;/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||||
|
### Imported target for C++23 standard library
|
||||||
|
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles")
|
||||||
|
|
||||||
|
|
||||||
|
### Imported target for C++26 standard library
|
||||||
|
set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BIN
build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin
Executable file
BIN
build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin
Executable file
Binary file not shown.
15
build/CMakeFiles/4.1.2/CMakeSystem.cmake
Normal file
15
build/CMakeFiles/4.1.2/CMakeSystem.cmake
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-6.17.10-Ganome-v1.03")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "6.17.10-Ganome-v1.03")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-6.17.10-Ganome-v1.03")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "6.17.10-Ganome-v1.03")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
949
build/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
949
build/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
@ -0,0 +1,949 @@
|
|||||||
|
/* This source file must have a .cpp extension so that all C++ compilers
|
||||||
|
recognize the extension without flags. Borland does not know .cxx for
|
||||||
|
example. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
# 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 */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __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_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 */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# 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(__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__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_CC)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_CC >= 0x5100
|
||||||
|
/* __SUNPRO_CC = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_aCC)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_aCC = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECCXX)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECCXX_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# 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__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__cray__)
|
||||||
|
# define COMPILER_ID "CrayClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#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"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
# define COMPILER_ID "Tasking"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||||
|
|
||||||
|
#elif defined(__ORANGEC__)
|
||||||
|
# define COMPILER_ID "OrangeC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||||
|
|
||||||
|
#elif defined(__RENESAS__)
|
||||||
|
# define COMPILER_ID "Renesas"
|
||||||
|
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# 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(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# define COMPILER_ID "TIClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# 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__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
||||||
|
# define COMPILER_ID "Diab"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#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"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# if defined(__ARM_ARCH)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
|
||||||
|
# if defined(__CTC__) || defined(__CPTC__)
|
||||||
|
# define ARCHITECTURE_ID "TriCore"
|
||||||
|
|
||||||
|
# elif defined(__CMCS__)
|
||||||
|
# define ARCHITECTURE_ID "MCS"
|
||||||
|
|
||||||
|
# elif defined(__CARM__) || defined(__CPARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__CARC__)
|
||||||
|
# define ARCHITECTURE_ID "ARC"
|
||||||
|
|
||||||
|
# elif defined(__C51__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__CPCP__)
|
||||||
|
# define ARCHITECTURE_ID "PCP"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__RENESAS__)
|
||||||
|
# if defined(__CCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__CCRL__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__CCRH__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('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. */
|
||||||
|
#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','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'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. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define CXX_STD_98 199711L
|
||||||
|
#define CXX_STD_11 201103L
|
||||||
|
#define CXX_STD_14 201402L
|
||||||
|
#define CXX_STD_17 201703L
|
||||||
|
#define CXX_STD_20 202002L
|
||||||
|
#define CXX_STD_23 202302L
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > CXX_STD_17
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
# else
|
||||||
|
# define CXX_STD CXX_STD_98
|
||||||
|
# endif
|
||||||
|
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > __cplusplus
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__INTEL_COMPILER) || defined(__PGI)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
#else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||||
|
#if CXX_STD > CXX_STD_23
|
||||||
|
"26"
|
||||||
|
#elif CXX_STD > CXX_STD_20
|
||||||
|
"23"
|
||||||
|
#elif CXX_STD > CXX_STD_17
|
||||||
|
"20"
|
||||||
|
#elif CXX_STD > CXX_STD_14
|
||||||
|
"17"
|
||||||
|
#elif CXX_STD > CXX_STD_11
|
||||||
|
"14"
|
||||||
|
#elif CXX_STD >= CXX_STD_11
|
||||||
|
"11"
|
||||||
|
#else
|
||||||
|
"98"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
BIN
build/CMakeFiles/4.1.2/CompilerIdCXX/a.out
Executable file
BIN
build/CMakeFiles/4.1.2/CompilerIdCXX/a.out
Executable file
Binary file not shown.
2534
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
2534
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
File diff suppressed because it is too large
Load Diff
16
build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
16
build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/ganome/Projects/SCAR-719/repos/scar-chat")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/ganome/Projects/SCAR-719/repos/scar-chat/build")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||||
5
build/CMakeFiles/CMakeRuleHashes.txt
Normal file
5
build/CMakeFiles/CMakeRuleHashes.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Hashes of file build rules.
|
||||||
|
77d25e6e4a8537e03ad9144e57b99c6e CMakeFiles/chat_client_qt_autogen
|
||||||
|
77d25e6e4a8537e03ad9144e57b99c6e CMakeFiles/chat_server_autogen
|
||||||
|
0d1319ee83c8dd43c2067d5e66e2b11c chat_client_qt_autogen/timestamp
|
||||||
|
6384f53b9123c4acfc60b38872f4ffd5 chat_server_autogen/timestamp
|
||||||
7
build/CMakeFiles/InstallScripts.json
Normal file
7
build/CMakeFiles/InstallScripts.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"InstallScripts" :
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/cmake_install.cmake"
|
||||||
|
],
|
||||||
|
"Parallel" : false
|
||||||
|
}
|
||||||
164
build/CMakeFiles/Makefile.cmake
Normal file
164
build/CMakeFiles/Makefile.cmake
Normal file
@ -0,0 +1,164 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# The generator used is:
|
||||||
|
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||||
|
|
||||||
|
# The top level Makefile was generated from the following files:
|
||||||
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
|
"CMakeCache.txt"
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt"
|
||||||
|
"CMakeFiles/4.1.2/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/4.1.2/CMakeSystem.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5Config.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake"
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeFindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseArguments.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystem.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeUnixFindMake.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindOpenSSL.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPkgConfig.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/FeatureTesting.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/4.1.2/CMakeSystem.cmake"
|
||||||
|
"CMakeFiles/4.1.2/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/4.1.2/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/4.1.2/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/chat_server_autogen.dir/AutogenInfo.json"
|
||||||
|
"CMakeFiles/chat_client_qt_autogen.dir/AutogenInfo.json"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/chat_server.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/chat_client_qt.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/chat_server_autogen_timestamp_deps.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/chat_server_autogen.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/chat_client_qt_autogen.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
291
build/CMakeFiles/Makefile2
Normal file
291
build/CMakeFiles/Makefile2
Normal file
@ -0,0 +1,291 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Directory level rules for the build root directory
|
||||||
|
|
||||||
|
# The main recursive "all" target.
|
||||||
|
all: CMakeFiles/chat_server.dir/all
|
||||||
|
all: CMakeFiles/chat_client_qt.dir/all
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main recursive "codegen" target.
|
||||||
|
codegen: CMakeFiles/chat_server.dir/codegen
|
||||||
|
codegen: CMakeFiles/chat_client_qt.dir/codegen
|
||||||
|
.PHONY : codegen
|
||||||
|
|
||||||
|
# The main recursive "preinstall" target.
|
||||||
|
preinstall:
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# The main recursive "clean" target.
|
||||||
|
clean: CMakeFiles/chat_server.dir/clean
|
||||||
|
clean: CMakeFiles/chat_client_qt.dir/clean
|
||||||
|
clean: CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean
|
||||||
|
clean: CMakeFiles/chat_server_autogen.dir/clean
|
||||||
|
clean: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean
|
||||||
|
clean: CMakeFiles/chat_client_qt_autogen.dir/clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_server.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_server.dir/all: CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
CMakeFiles/chat_server.dir/all: CMakeFiles/chat_server_autogen.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=6,7,8,9 "Built target chat_server"
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_server.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 5
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_server.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/rule
|
||||||
|
.PHONY : chat_server
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_server.dir/codegen: CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=6,7,8,9 "Finished codegen for target chat_server"
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_server.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_client_qt.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_client_qt.dir/all: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
CMakeFiles/chat_client_qt.dir/all: CMakeFiles/chat_client_qt_autogen.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=1,2,3,4 "Built target chat_client_qt"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_client_qt.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 5
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_client_qt.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/rule
|
||||||
|
.PHONY : chat_client_qt
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_client_qt.dir/codegen: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=1,2,3,4 "Finished codegen for target chat_client_qt"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_client_qt.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_server_autogen_timestamp_deps.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/all:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_server_autogen_timestamp_deps.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_server_autogen_timestamp_deps.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num= "Built target chat_server_autogen_timestamp_deps"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_server_autogen_timestamp_deps: CMakeFiles/chat_server_autogen_timestamp_deps.dir/rule
|
||||||
|
.PHONY : chat_server_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/codegen:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_server_autogen_timestamp_deps.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num= "Finished codegen for target chat_server_autogen_timestamp_deps"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_server_autogen.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen.dir/all: CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen.dir/build.make CMakeFiles/chat_server_autogen.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen.dir/build.make CMakeFiles/chat_server_autogen.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=10 "Built target chat_server_autogen"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_server_autogen.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 1
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_server_autogen.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_server_autogen: CMakeFiles/chat_server_autogen.dir/rule
|
||||||
|
.PHONY : chat_server_autogen
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen.dir/codegen: CMakeFiles/chat_server_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen.dir/build.make CMakeFiles/chat_server_autogen.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=10 "Finished codegen for target chat_server_autogen"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_server_autogen.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen.dir/build.make CMakeFiles/chat_server_autogen.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num= "Built target chat_client_qt_autogen_timestamp_deps"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_client_qt_autogen_timestamp_deps: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/rule
|
||||||
|
.PHONY : chat_client_qt_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/codegen:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num= "Finished codegen for target chat_client_qt_autogen_timestamp_deps"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/chat_client_qt_autogen.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/all: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen.dir/build.make CMakeFiles/chat_client_qt_autogen.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen.dir/build.make CMakeFiles/chat_client_qt_autogen.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=5 "Built target chat_client_qt_autogen"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 1
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/chat_client_qt_autogen.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
chat_client_qt_autogen: CMakeFiles/chat_client_qt_autogen.dir/rule
|
||||||
|
.PHONY : chat_client_qt_autogen
|
||||||
|
|
||||||
|
# codegen rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/codegen: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen.dir/build.make CMakeFiles/chat_client_qt_autogen.dir/codegen
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=5 "Finished codegen for target chat_client_qt_autogen"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/codegen
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen.dir/build.make CMakeFiles/chat_client_qt_autogen.dir/clean
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
12
build/CMakeFiles/TargetDirectories.txt
Normal file
12
build/CMakeFiles/TargetDirectories.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/edit_cache.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/list_install_components.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/install.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/install/local.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/install/strip.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen_timestamp_deps.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir
|
||||||
26
build/CMakeFiles/chat_client_qt.dir/DependInfo.cmake
Normal file
26
build/CMakeFiles/chat_client_qt.dir/DependInfo.cmake
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"" "chat_client_qt_autogen/timestamp" "custom" "chat_client_qt_autogen/deps"
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp" "CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o.d"
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp" "CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o" "gcc" "CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o.d"
|
||||||
|
"" "chat_client_qt" "gcc" "CMakeFiles/chat_client_qt.dir/link.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
143
build/CMakeFiles/chat_client_qt.dir/build.make
Normal file
143
build/CMakeFiles/chat_client_qt.dir/build.make
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/chat_client_qt.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/chat_client_qt.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_client_qt.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/chat_client_qt.dir/flags.make
|
||||||
|
|
||||||
|
chat_client_qt_autogen/timestamp: /usr/lib64/qt5/bin/moc
|
||||||
|
chat_client_qt_autogen/timestamp: /usr/lib64/qt5/bin/uic
|
||||||
|
chat_client_qt_autogen/timestamp: CMakeFiles/chat_client_qt.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target chat_client_qt"
|
||||||
|
/usr/bin/cmake -E cmake_autogen /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir/AutogenInfo.json ""
|
||||||
|
/usr/bin/cmake -E touch /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/timestamp
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/codegen
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o: CMakeFiles/chat_client_qt.dir/flags.make
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o: chat_client_qt_autogen/mocs_compilation.cpp
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o: CMakeFiles/chat_client_qt.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o -MF CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o -c /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp > CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp -o CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o: CMakeFiles/chat_client_qt.dir/flags.make
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o: /home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o: CMakeFiles/chat_client_qt.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o -MF CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o.d -o CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o -c /home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp > CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp -o CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.s
|
||||||
|
|
||||||
|
# Object files for target chat_client_qt
|
||||||
|
chat_client_qt_OBJECTS = \
|
||||||
|
"CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o" \
|
||||||
|
"CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target chat_client_qt
|
||||||
|
chat_client_qt_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/build.make
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/compiler_depend.ts
|
||||||
|
chat_client_qt: /usr/lib64/libQt5Widgets.so.5.15.18
|
||||||
|
chat_client_qt: /usr/lib64/libQt5Network.so.5.15.18
|
||||||
|
chat_client_qt: /usr/lib64/libssl.so
|
||||||
|
chat_client_qt: /usr/lib64/libcrypto.so
|
||||||
|
chat_client_qt: /usr/lib64/libQt5Gui.so.5.15.18
|
||||||
|
chat_client_qt: /usr/lib64/libQt5Core.so.5.15.18
|
||||||
|
chat_client_qt: CMakeFiles/chat_client_qt.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable chat_client_qt"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/chat_client_qt.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_client_qt.dir/build: chat_client_qt
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_client_qt.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/depend: chat_client_qt_autogen/timestamp
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt.dir/depend
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp \
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
19
build/CMakeFiles/chat_client_qt.dir/cmake_clean.cmake
Normal file
19
build/CMakeFiles/chat_client_qt.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/chat_client_qt.dir/link.d"
|
||||||
|
"CMakeFiles/chat_client_qt_autogen.dir/AutogenUsed.txt"
|
||||||
|
"CMakeFiles/chat_client_qt_autogen.dir/ParseCache.txt"
|
||||||
|
"chat_client_qt_autogen"
|
||||||
|
"CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o"
|
||||||
|
"CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o.d"
|
||||||
|
"CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o"
|
||||||
|
"CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o.d"
|
||||||
|
"chat_client_qt"
|
||||||
|
"chat_client_qt.pdb"
|
||||||
|
"chat_client_qt_autogen/mocs_compilation.cpp"
|
||||||
|
"chat_client_qt_autogen/timestamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/chat_client_qt.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
580
build/CMakeFiles/chat_client_qt.dir/compiler_depend.internal
Normal file
580
build/CMakeFiles/chat_client_qt.dir/compiler_depend.internal
Normal file
@ -0,0 +1,580 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/timestamp
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/moc_predefs.h
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp
|
||||||
|
/usr/bin/cmake
|
||||||
|
/usr/include/alloca.h
|
||||||
|
/usr/include/asm-generic/bitsperlong.h
|
||||||
|
/usr/include/asm-generic/errno-base.h
|
||||||
|
/usr/include/asm-generic/errno.h
|
||||||
|
/usr/include/asm-generic/int-ll64.h
|
||||||
|
/usr/include/asm-generic/posix_types.h
|
||||||
|
/usr/include/asm-generic/types.h
|
||||||
|
/usr/include/asm/bitsperlong.h
|
||||||
|
/usr/include/asm/errno.h
|
||||||
|
/usr/include/asm/posix_types.h
|
||||||
|
/usr/include/asm/posix_types_64.h
|
||||||
|
/usr/include/asm/types.h
|
||||||
|
/usr/include/asm/unistd.h
|
||||||
|
/usr/include/asm/unistd_64.h
|
||||||
|
/usr/include/assert.h
|
||||||
|
/usr/include/bits/atomic_wide_counter.h
|
||||||
|
/usr/include/bits/byteswap.h
|
||||||
|
/usr/include/bits/confname.h
|
||||||
|
/usr/include/bits/cpu-set.h
|
||||||
|
/usr/include/bits/endian.h
|
||||||
|
/usr/include/bits/endianness.h
|
||||||
|
/usr/include/bits/environments.h
|
||||||
|
/usr/include/bits/errno.h
|
||||||
|
/usr/include/bits/floatn-common.h
|
||||||
|
/usr/include/bits/floatn.h
|
||||||
|
/usr/include/bits/getopt_core.h
|
||||||
|
/usr/include/bits/getopt_posix.h
|
||||||
|
/usr/include/bits/libc-header-start.h
|
||||||
|
/usr/include/bits/local_lim.h
|
||||||
|
/usr/include/bits/locale.h
|
||||||
|
/usr/include/bits/long-double.h
|
||||||
|
/usr/include/bits/posix1_lim.h
|
||||||
|
/usr/include/bits/posix2_lim.h
|
||||||
|
/usr/include/bits/posix_opt.h
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h
|
||||||
|
/usr/include/bits/pthreadtypes.h
|
||||||
|
/usr/include/bits/sched.h
|
||||||
|
/usr/include/bits/select.h
|
||||||
|
/usr/include/bits/setjmp.h
|
||||||
|
/usr/include/bits/stdint-intn.h
|
||||||
|
/usr/include/bits/stdio_lim.h
|
||||||
|
/usr/include/bits/stdlib-float.h
|
||||||
|
/usr/include/bits/struct_mutex.h
|
||||||
|
/usr/include/bits/struct_rwlock.h
|
||||||
|
/usr/include/bits/syscall.h
|
||||||
|
/usr/include/bits/thread-shared-types.h
|
||||||
|
/usr/include/bits/time.h
|
||||||
|
/usr/include/bits/time64.h
|
||||||
|
/usr/include/bits/timesize.h
|
||||||
|
/usr/include/bits/timex.h
|
||||||
|
/usr/include/bits/types.h
|
||||||
|
/usr/include/bits/types/FILE.h
|
||||||
|
/usr/include/bits/types/__FILE.h
|
||||||
|
/usr/include/bits/types/__fpos64_t.h
|
||||||
|
/usr/include/bits/types/__fpos_t.h
|
||||||
|
/usr/include/bits/types/__locale_t.h
|
||||||
|
/usr/include/bits/types/__mbstate_t.h
|
||||||
|
/usr/include/bits/types/__sigset_t.h
|
||||||
|
/usr/include/bits/types/clock_t.h
|
||||||
|
/usr/include/bits/types/clockid_t.h
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h
|
||||||
|
/usr/include/bits/types/error_t.h
|
||||||
|
/usr/include/bits/types/locale_t.h
|
||||||
|
/usr/include/bits/types/mbstate_t.h
|
||||||
|
/usr/include/bits/types/sigset_t.h
|
||||||
|
/usr/include/bits/types/struct_FILE.h
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h
|
||||||
|
/usr/include/bits/types/struct_sched_param.h
|
||||||
|
/usr/include/bits/types/struct_timespec.h
|
||||||
|
/usr/include/bits/types/struct_timeval.h
|
||||||
|
/usr/include/bits/types/struct_tm.h
|
||||||
|
/usr/include/bits/types/time_t.h
|
||||||
|
/usr/include/bits/types/timer_t.h
|
||||||
|
/usr/include/bits/types/wint_t.h
|
||||||
|
/usr/include/bits/typesizes.h
|
||||||
|
/usr/include/bits/uintn-identity.h
|
||||||
|
/usr/include/bits/uio_lim.h
|
||||||
|
/usr/include/bits/unistd_ext.h
|
||||||
|
/usr/include/bits/waitflags.h
|
||||||
|
/usr/include/bits/waitstatus.h
|
||||||
|
/usr/include/bits/wchar.h
|
||||||
|
/usr/include/bits/wctype-wchar.h
|
||||||
|
/usr/include/bits/wordsize.h
|
||||||
|
/usr/include/bits/xopen_lim.h
|
||||||
|
/usr/include/ctype.h
|
||||||
|
/usr/include/endian.h
|
||||||
|
/usr/include/errno.h
|
||||||
|
/usr/include/features-time64.h
|
||||||
|
/usr/include/features.h
|
||||||
|
/usr/include/gnu/stubs-64.h
|
||||||
|
/usr/include/gnu/stubs.h
|
||||||
|
/usr/include/limits.h
|
||||||
|
/usr/include/linux/errno.h
|
||||||
|
/usr/include/linux/limits.h
|
||||||
|
/usr/include/linux/posix_types.h
|
||||||
|
/usr/include/linux/stddef.h
|
||||||
|
/usr/include/linux/types.h
|
||||||
|
/usr/include/locale.h
|
||||||
|
/usr/include/pthread.h
|
||||||
|
/usr/include/qt5/Gentoo/gentoo-qconfig.h
|
||||||
|
/usr/include/qt5/QtCore/QFlags
|
||||||
|
/usr/include/qt5/QtCore/QThread
|
||||||
|
/usr/include/qt5/QtCore/qalgorithms.h
|
||||||
|
/usr/include/qt5/QtCore/qarraydata.h
|
||||||
|
/usr/include/qt5/QtCore/qatomic.h
|
||||||
|
/usr/include/qt5/QtCore/qatomic_cxx11.h
|
||||||
|
/usr/include/qt5/QtCore/qbasicatomic.h
|
||||||
|
/usr/include/qt5/QtCore/qbytearray.h
|
||||||
|
/usr/include/qt5/QtCore/qbytearraylist.h
|
||||||
|
/usr/include/qt5/QtCore/qchar.h
|
||||||
|
/usr/include/qt5/QtCore/qcompilerdetection.h
|
||||||
|
/usr/include/qt5/QtCore/qconfig.h
|
||||||
|
/usr/include/qt5/QtCore/qcontainerfwd.h
|
||||||
|
/usr/include/qt5/QtCore/qcontainertools_impl.h
|
||||||
|
/usr/include/qt5/QtCore/qcontiguouscache.h
|
||||||
|
/usr/include/qt5/QtCore/qcoreapplication.h
|
||||||
|
/usr/include/qt5/QtCore/qcoreevent.h
|
||||||
|
/usr/include/qt5/QtCore/qcryptographichash.h
|
||||||
|
/usr/include/qt5/QtCore/qdatastream.h
|
||||||
|
/usr/include/qt5/QtCore/qdatetime.h
|
||||||
|
/usr/include/qt5/QtCore/qdeadlinetimer.h
|
||||||
|
/usr/include/qt5/QtCore/qdebug.h
|
||||||
|
/usr/include/qt5/QtCore/qelapsedtimer.h
|
||||||
|
/usr/include/qt5/QtCore/qeventloop.h
|
||||||
|
/usr/include/qt5/QtCore/qflags.h
|
||||||
|
/usr/include/qt5/QtCore/qgenericatomic.h
|
||||||
|
/usr/include/qt5/QtCore/qglobal.h
|
||||||
|
/usr/include/qt5/QtCore/qglobalstatic.h
|
||||||
|
/usr/include/qt5/QtCore/qhash.h
|
||||||
|
/usr/include/qt5/QtCore/qhashfunctions.h
|
||||||
|
/usr/include/qt5/QtCore/qiodevice.h
|
||||||
|
/usr/include/qt5/QtCore/qiterator.h
|
||||||
|
/usr/include/qt5/QtCore/qline.h
|
||||||
|
/usr/include/qt5/QtCore/qlist.h
|
||||||
|
/usr/include/qt5/QtCore/qlocale.h
|
||||||
|
/usr/include/qt5/QtCore/qlogging.h
|
||||||
|
/usr/include/qt5/QtCore/qmap.h
|
||||||
|
/usr/include/qt5/QtCore/qmargins.h
|
||||||
|
/usr/include/qt5/QtCore/qmetatype.h
|
||||||
|
/usr/include/qt5/QtCore/qnamespace.h
|
||||||
|
/usr/include/qt5/QtCore/qnumeric.h
|
||||||
|
/usr/include/qt5/QtCore/qobject.h
|
||||||
|
/usr/include/qt5/QtCore/qobject_impl.h
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs.h
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs_impl.h
|
||||||
|
/usr/include/qt5/QtCore/qpair.h
|
||||||
|
/usr/include/qt5/QtCore/qpoint.h
|
||||||
|
/usr/include/qt5/QtCore/qprocessordetection.h
|
||||||
|
/usr/include/qt5/QtCore/qrect.h
|
||||||
|
/usr/include/qt5/QtCore/qrefcount.h
|
||||||
|
/usr/include/qt5/QtCore/qregexp.h
|
||||||
|
/usr/include/qt5/QtCore/qregularexpression.h
|
||||||
|
/usr/include/qt5/QtCore/qscopedpointer.h
|
||||||
|
/usr/include/qt5/QtCore/qset.h
|
||||||
|
/usr/include/qt5/QtCore/qshareddata.h
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer.h
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer_impl.h
|
||||||
|
/usr/include/qt5/QtCore/qsize.h
|
||||||
|
/usr/include/qt5/QtCore/qstring.h
|
||||||
|
/usr/include/qt5/QtCore/qstringalgorithms.h
|
||||||
|
/usr/include/qt5/QtCore/qstringlist.h
|
||||||
|
/usr/include/qt5/QtCore/qstringliteral.h
|
||||||
|
/usr/include/qt5/QtCore/qstringmatcher.h
|
||||||
|
/usr/include/qt5/QtCore/qstringview.h
|
||||||
|
/usr/include/qt5/QtCore/qsysinfo.h
|
||||||
|
/usr/include/qt5/QtCore/qsystemdetection.h
|
||||||
|
/usr/include/qt5/QtCore/qtcore-config.h
|
||||||
|
/usr/include/qt5/QtCore/qtextstream.h
|
||||||
|
/usr/include/qt5/QtCore/qthread.h
|
||||||
|
/usr/include/qt5/QtCore/qtypeinfo.h
|
||||||
|
/usr/include/qt5/QtCore/qurl.h
|
||||||
|
/usr/include/qt5/QtCore/qvariant.h
|
||||||
|
/usr/include/qt5/QtCore/qvarlengtharray.h
|
||||||
|
/usr/include/qt5/QtCore/qvector.h
|
||||||
|
/usr/include/qt5/QtCore/qversiontagging.h
|
||||||
|
/usr/include/qt5/QtGui/qbrush.h
|
||||||
|
/usr/include/qt5/QtGui/qcolor.h
|
||||||
|
/usr/include/qt5/QtGui/qcursor.h
|
||||||
|
/usr/include/qt5/QtGui/qfont.h
|
||||||
|
/usr/include/qt5/QtGui/qfontinfo.h
|
||||||
|
/usr/include/qt5/QtGui/qfontmetrics.h
|
||||||
|
/usr/include/qt5/QtGui/qguiapplication.h
|
||||||
|
/usr/include/qt5/QtGui/qicon.h
|
||||||
|
/usr/include/qt5/QtGui/qimage.h
|
||||||
|
/usr/include/qt5/QtGui/qinputmethod.h
|
||||||
|
/usr/include/qt5/QtGui/qkeysequence.h
|
||||||
|
/usr/include/qt5/QtGui/qmatrix.h
|
||||||
|
/usr/include/qt5/QtGui/qpaintdevice.h
|
||||||
|
/usr/include/qt5/QtGui/qpalette.h
|
||||||
|
/usr/include/qt5/QtGui/qpen.h
|
||||||
|
/usr/include/qt5/QtGui/qpixelformat.h
|
||||||
|
/usr/include/qt5/QtGui/qpixmap.h
|
||||||
|
/usr/include/qt5/QtGui/qpolygon.h
|
||||||
|
/usr/include/qt5/QtGui/qregion.h
|
||||||
|
/usr/include/qt5/QtGui/qrgb.h
|
||||||
|
/usr/include/qt5/QtGui/qrgba64.h
|
||||||
|
/usr/include/qt5/QtGui/qtextcursor.h
|
||||||
|
/usr/include/qt5/QtGui/qtextdocument.h
|
||||||
|
/usr/include/qt5/QtGui/qtextformat.h
|
||||||
|
/usr/include/qt5/QtGui/qtextoption.h
|
||||||
|
/usr/include/qt5/QtGui/qtgui-config.h
|
||||||
|
/usr/include/qt5/QtGui/qtguiglobal.h
|
||||||
|
/usr/include/qt5/QtGui/qtransform.h
|
||||||
|
/usr/include/qt5/QtGui/qvalidator.h
|
||||||
|
/usr/include/qt5/QtGui/qwindowdefs.h
|
||||||
|
/usr/include/qt5/QtNetwork/QHostAddress
|
||||||
|
/usr/include/qt5/QtNetwork/QSslSocket
|
||||||
|
/usr/include/qt5/QtNetwork/qabstractsocket.h
|
||||||
|
/usr/include/qt5/QtNetwork/qhostaddress.h
|
||||||
|
/usr/include/qt5/QtNetwork/qssl.h
|
||||||
|
/usr/include/qt5/QtNetwork/qsslcertificate.h
|
||||||
|
/usr/include/qt5/QtNetwork/qsslerror.h
|
||||||
|
/usr/include/qt5/QtNetwork/qsslsocket.h
|
||||||
|
/usr/include/qt5/QtNetwork/qtcpsocket.h
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetwork-config.h
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetworkglobal.h
|
||||||
|
/usr/include/qt5/QtWidgets/QApplication
|
||||||
|
/usr/include/qt5/QtWidgets/QColorDialog
|
||||||
|
/usr/include/qt5/QtWidgets/QHBoxLayout
|
||||||
|
/usr/include/qt5/QtWidgets/QLabel
|
||||||
|
/usr/include/qt5/QtWidgets/QLineEdit
|
||||||
|
/usr/include/qt5/QtWidgets/QMainWindow
|
||||||
|
/usr/include/qt5/QtWidgets/QMessageBox
|
||||||
|
/usr/include/qt5/QtWidgets/QPushButton
|
||||||
|
/usr/include/qt5/QtWidgets/QSlider
|
||||||
|
/usr/include/qt5/QtWidgets/QSpinBox
|
||||||
|
/usr/include/qt5/QtWidgets/QTextEdit
|
||||||
|
/usr/include/qt5/QtWidgets/QVBoxLayout
|
||||||
|
/usr/include/qt5/QtWidgets/QWidget
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractbutton.h
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractscrollarea.h
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractslider.h
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractspinbox.h
|
||||||
|
/usr/include/qt5/QtWidgets/qapplication.h
|
||||||
|
/usr/include/qt5/QtWidgets/qboxlayout.h
|
||||||
|
/usr/include/qt5/QtWidgets/qcolordialog.h
|
||||||
|
/usr/include/qt5/QtWidgets/qdialog.h
|
||||||
|
/usr/include/qt5/QtWidgets/qframe.h
|
||||||
|
/usr/include/qt5/QtWidgets/qgridlayout.h
|
||||||
|
/usr/include/qt5/QtWidgets/qlabel.h
|
||||||
|
/usr/include/qt5/QtWidgets/qlayout.h
|
||||||
|
/usr/include/qt5/QtWidgets/qlayoutitem.h
|
||||||
|
/usr/include/qt5/QtWidgets/qlineedit.h
|
||||||
|
/usr/include/qt5/QtWidgets/qmainwindow.h
|
||||||
|
/usr/include/qt5/QtWidgets/qmessagebox.h
|
||||||
|
/usr/include/qt5/QtWidgets/qpushbutton.h
|
||||||
|
/usr/include/qt5/QtWidgets/qsizepolicy.h
|
||||||
|
/usr/include/qt5/QtWidgets/qslider.h
|
||||||
|
/usr/include/qt5/QtWidgets/qspinbox.h
|
||||||
|
/usr/include/qt5/QtWidgets/qtabwidget.h
|
||||||
|
/usr/include/qt5/QtWidgets/qtextedit.h
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgets-config.h
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgetsglobal.h
|
||||||
|
/usr/include/qt5/QtWidgets/qwidget.h
|
||||||
|
/usr/include/sched.h
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
|
/usr/include/stdio.h
|
||||||
|
/usr/include/stdlib.h
|
||||||
|
/usr/include/string.h
|
||||||
|
/usr/include/strings.h
|
||||||
|
/usr/include/sys/cdefs.h
|
||||||
|
/usr/include/sys/select.h
|
||||||
|
/usr/include/sys/syscall.h
|
||||||
|
/usr/include/sys/types.h
|
||||||
|
/usr/include/syscall.h
|
||||||
|
/usr/include/time.h
|
||||||
|
/usr/include/unistd.h
|
||||||
|
/usr/include/wchar.h
|
||||||
|
/usr/include/wctype.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/array
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/atomic
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_wait.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/c++0x_warning.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/erase_if.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/formatfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/iterator_concepts.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/list.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/max_size_type.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/mofunc_impl.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/monostate.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move_only_function.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/node_handle.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/out_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algo.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algobase.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_cmp.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_uninitialized.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_util.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/sat_arith.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_function.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_list.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_map.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_multimap.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_numeric.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_relops.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tree.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stream_iterator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cerrno
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/charconv
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/climits
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/compare
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/format
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/functional
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/future
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iterator
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/list
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/map
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numbers
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numeric
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/optional
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_numeric_defs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/text_encoding
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/unordered_map
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/utility
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake
|
||||||
|
|
||||||
1729
build/CMakeFiles/chat_client_qt.dir/compiler_depend.make
Normal file
1729
build/CMakeFiles/chat_client_qt.dir/compiler_depend.make
Normal file
File diff suppressed because it is too large
Load Diff
2
build/CMakeFiles/chat_client_qt.dir/compiler_depend.ts
Normal file
2
build/CMakeFiles/chat_client_qt.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for chat_client_qt.
|
||||||
2
build/CMakeFiles/chat_client_qt.dir/depend.make
Normal file
2
build/CMakeFiles/chat_client_qt.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for chat_client_qt.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
10
build/CMakeFiles/chat_client_qt.dir/flags.make
Normal file
10
build/CMakeFiles/chat_client_qt.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/include -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/qt5/QtNetwork
|
||||||
|
|
||||||
|
CXX_FLAGS = -std=gnu++17 -Wall -Wextra -std=c++17 -fPIC
|
||||||
|
|
||||||
178
build/CMakeFiles/chat_client_qt.dir/link.d
Normal file
178
build/CMakeFiles/chat_client_qt.dir/link.d
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
chat_client_qt: \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/Scrt1.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crti.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtbeginS.o \
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o \
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o \
|
||||||
|
/usr/lib64/libQt5Widgets.so.5.15.18 \
|
||||||
|
/usr/lib64/libQt5Network.so.5.15.18 \
|
||||||
|
/usr/lib64/libssl.so \
|
||||||
|
/usr/lib64/libcrypto.so \
|
||||||
|
/usr/lib64/libQt5Gui.so.5.15.18 \
|
||||||
|
/usr/lib64/libQt5Core.so.5.15.18 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libstdc++.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/lib64/libm.so.6 \
|
||||||
|
/lib64/libmvec.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/lib64/libc.so.6 \
|
||||||
|
/usr/lib64/libc_nonshared.a \
|
||||||
|
/lib64/ld-linux-x86-64.so.2 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtendS.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crtn.o \
|
||||||
|
/usr/lib64/libz.so.1 \
|
||||||
|
/usr/lib64/libGL.so.1 \
|
||||||
|
/usr/lib64/libpng16.so.16 \
|
||||||
|
/usr/lib64/libharfbuzz.so.0 \
|
||||||
|
/usr/lib64/libmd4c.so.0 \
|
||||||
|
/usr/lib64/libdouble-conversion.so.3 \
|
||||||
|
/usr/lib64/libicui18n.so.77 \
|
||||||
|
/usr/lib64/libicuuc.so.77 \
|
||||||
|
/usr/lib64/libpcre2-16.so.0 \
|
||||||
|
/usr/lib64/libglib-2.0.so.0 \
|
||||||
|
/lib64/ld-linux-x86-64.so.2 \
|
||||||
|
/usr/lib64/libGLdispatch.so.0 \
|
||||||
|
/usr/lib64/libGLX.so.0 \
|
||||||
|
/usr/lib64/libfreetype.so.6 \
|
||||||
|
/usr/lib64/libgraphite2.so.3 \
|
||||||
|
/usr/lib64/libicudata.so.77 \
|
||||||
|
/usr/lib64/libpcre2-8.so.0 \
|
||||||
|
/usr/lib64/libX11.so.6 \
|
||||||
|
/usr/lib64/libbz2.so.1 \
|
||||||
|
/usr/lib64/libxcb.so.1 \
|
||||||
|
/usr/lib64/libXau.so.6 \
|
||||||
|
/usr/lib64/libXdmcp.so.6
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/Scrt1.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crti.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtbeginS.o:
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o:
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o:
|
||||||
|
|
||||||
|
/usr/lib64/libQt5Widgets.so.5.15.18:
|
||||||
|
|
||||||
|
/usr/lib64/libQt5Network.so.5.15.18:
|
||||||
|
|
||||||
|
/usr/lib64/libssl.so:
|
||||||
|
|
||||||
|
/usr/lib64/libcrypto.so:
|
||||||
|
|
||||||
|
/usr/lib64/libQt5Gui.so.5.15.18:
|
||||||
|
|
||||||
|
/usr/lib64/libQt5Core.so.5.15.18:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libstdc++.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/lib64/libm.so.6:
|
||||||
|
|
||||||
|
/lib64/libmvec.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/lib64/libc.so.6:
|
||||||
|
|
||||||
|
/usr/lib64/libc_nonshared.a:
|
||||||
|
|
||||||
|
/lib64/ld-linux-x86-64.so.2:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtendS.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crtn.o:
|
||||||
|
|
||||||
|
/usr/lib64/libz.so.1:
|
||||||
|
|
||||||
|
/usr/lib64/libGL.so.1:
|
||||||
|
|
||||||
|
/usr/lib64/libpng16.so.16:
|
||||||
|
|
||||||
|
/usr/lib64/libharfbuzz.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libmd4c.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libdouble-conversion.so.3:
|
||||||
|
|
||||||
|
/usr/lib64/libicui18n.so.77:
|
||||||
|
|
||||||
|
/usr/lib64/libicuuc.so.77:
|
||||||
|
|
||||||
|
/usr/lib64/libpcre2-16.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libglib-2.0.so.0:
|
||||||
|
|
||||||
|
/lib64/ld-linux-x86-64.so.2:
|
||||||
|
|
||||||
|
/usr/lib64/libGLdispatch.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libGLX.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libfreetype.so.6:
|
||||||
|
|
||||||
|
/usr/lib64/libgraphite2.so.3:
|
||||||
|
|
||||||
|
/usr/lib64/libicudata.so.77:
|
||||||
|
|
||||||
|
/usr/lib64/libpcre2-8.so.0:
|
||||||
|
|
||||||
|
/usr/lib64/libX11.so.6:
|
||||||
|
|
||||||
|
/usr/lib64/libbz2.so.1:
|
||||||
|
|
||||||
|
/usr/lib64/libxcb.so.1:
|
||||||
|
|
||||||
|
/usr/lib64/libXau.so.6:
|
||||||
|
|
||||||
|
/usr/lib64/libXdmcp.so.6:
|
||||||
1
build/CMakeFiles/chat_client_qt.dir/link.txt
Normal file
1
build/CMakeFiles/chat_client_qt.dir/link.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -Wl,--dependency-file=CMakeFiles/chat_client_qt.dir/link.d CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o -o chat_client_qt /usr/lib64/libQt5Widgets.so.5.15.18 /usr/lib64/libQt5Network.so.5.15.18 /usr/lib64/libssl.so /usr/lib64/libcrypto.so /usr/lib64/libQt5Gui.so.5.15.18 /usr/lib64/libQt5Core.so.5.15.18
|
||||||
5
build/CMakeFiles/chat_client_qt.dir/progress.make
Normal file
5
build/CMakeFiles/chat_client_qt.dir/progress.make
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 1
|
||||||
|
CMAKE_PROGRESS_2 = 2
|
||||||
|
CMAKE_PROGRESS_3 = 3
|
||||||
|
CMAKE_PROGRESS_4 = 4
|
||||||
|
|
||||||
BIN
build/CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o
Normal file
BIN
build/CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o
Normal file
Binary file not shown.
366
build/CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o.d
Normal file
366
build/CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o.d
Normal file
@ -0,0 +1,366 @@
|
|||||||
|
CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/qt5/QtWidgets/QApplication \
|
||||||
|
/usr/include/qt5/QtWidgets/qapplication.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgetsglobal.h \
|
||||||
|
/usr/include/qt5/QtGui/qtguiglobal.h /usr/include/qt5/QtCore/qglobal.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/pstl_config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/utility \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_relops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list \
|
||||||
|
/usr/include/assert.h /usr/include/qt5/QtCore/qconfig.h \
|
||||||
|
/usr/include/qt5/Gentoo/gentoo-qconfig.h \
|
||||||
|
/usr/include/qt5/QtCore/qtcore-config.h \
|
||||||
|
/usr/include/qt5/QtCore/qsystemdetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qprocessordetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qcompilerdetection.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/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/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_algorithm_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h \
|
||||||
|
/usr/include/qt5/QtCore/qtypeinfo.h /usr/include/qt5/QtCore/qsysinfo.h \
|
||||||
|
/usr/include/qt5/QtCore/qlogging.h /usr/include/qt5/QtCore/qflags.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic.h /usr/include/qt5/QtCore/qbasicatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic_cxx11.h \
|
||||||
|
/usr/include/qt5/QtCore/qgenericatomic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/atomic \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||||
|
/usr/include/qt5/QtCore/qglobalstatic.h \
|
||||||
|
/usr/include/qt5/QtCore/qnumeric.h \
|
||||||
|
/usr/include/qt5/QtCore/qversiontagging.h \
|
||||||
|
/usr/include/qt5/QtGui/qtgui-config.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgets-config.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreapplication.h \
|
||||||
|
/usr/include/qt5/QtCore/qstring.h /usr/include/qt5/QtCore/qchar.h \
|
||||||
|
/usr/include/qt5/QtCore/qbytearray.h /usr/include/qt5/QtCore/qrefcount.h \
|
||||||
|
/usr/include/qt5/QtCore/qnamespace.h \
|
||||||
|
/usr/include/qt5/QtCore/qarraydata.h /usr/include/string.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdlib.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale \
|
||||||
|
/usr/include/locale.h /usr/include/bits/locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype \
|
||||||
|
/usr/include/ctype.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iterator \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stream_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/linux/sched/types.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/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/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/system_error \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc \
|
||||||
|
/usr/include/qt5/QtCore/qstringliteral.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringview.h /usr/include/qt5/QtCore/qobject.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qlist.h /usr/include/qt5/QtCore/qalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qiterator.h \
|
||||||
|
/usr/include/qt5/QtCore/qhashfunctions.h /usr/include/qt5/QtCore/qpair.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numeric \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_numeric.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_numeric_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/functional \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/unordered_map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unordered_map.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hashtable.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hashtable_policy.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/enable_special_members.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/node_handle.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/erase_if.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/array \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/compare \
|
||||||
|
/usr/include/qt5/QtCore/qvector.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainertools_impl.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_list.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/list.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/limits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/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/qt5/QtCore/qbytearraylist.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringlist.h /usr/include/qt5/QtCore/qregexp.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringmatcher.h \
|
||||||
|
/usr/include/qt5/QtCore/qscopedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qmetatype.h \
|
||||||
|
/usr/include/qt5/QtCore/qvarlengtharray.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainerfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_memory_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tree.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_map.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_multimap.h \
|
||||||
|
/usr/include/qt5/QtCore/qobject_impl.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/chrono \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/chrono.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ratio \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ctime \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/parse_numbers.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreevent.h \
|
||||||
|
/usr/include/qt5/QtCore/qeventloop.h \
|
||||||
|
/usr/include/qt5/QtGui/qwindowdefs.h /usr/include/qt5/QtCore/qpoint.h \
|
||||||
|
/usr/include/qt5/QtCore/qsize.h /usr/include/qt5/QtCore/qmargins.h \
|
||||||
|
/usr/include/qt5/QtGui/qcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qguiapplication.h \
|
||||||
|
/usr/include/qt5/QtGui/qinputmethod.h /usr/include/qt5/QtCore/qlocale.h \
|
||||||
|
/usr/include/qt5/QtCore/qvariant.h /usr/include/qt5/QtCore/qmap.h \
|
||||||
|
/usr/include/qt5/QtCore/qhash.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/variant \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/monostate.h \
|
||||||
|
/usr/include/qt5/QtCore/qshareddata.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
||||||
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
||||||
|
/usr/include/qt5/QtGui/qpaintdevice.h /usr/include/qt5/QtCore/qrect.h \
|
||||||
|
/usr/include/qt5/QtGui/qpalette.h /usr/include/qt5/QtGui/qcolor.h \
|
||||||
|
/usr/include/qt5/QtGui/qrgb.h /usr/include/qt5/QtGui/qrgba64.h \
|
||||||
|
/usr/include/qt5/QtGui/qbrush.h /usr/include/qt5/QtGui/qmatrix.h \
|
||||||
|
/usr/include/qt5/QtGui/qpolygon.h /usr/include/qt5/QtGui/qregion.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatastream.h \
|
||||||
|
/usr/include/qt5/QtCore/qiodevice.h /usr/include/qt5/QtCore/qline.h \
|
||||||
|
/usr/include/qt5/QtGui/qtransform.h /usr/include/qt5/QtGui/qimage.h \
|
||||||
|
/usr/include/qt5/QtGui/qpixelformat.h /usr/include/qt5/QtGui/qpixmap.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer_impl.h \
|
||||||
|
/usr/include/qt5/QtGui/qfont.h /usr/include/qt5/QtGui/qfontmetrics.h \
|
||||||
|
/usr/include/qt5/QtGui/qfontinfo.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qsizepolicy.h \
|
||||||
|
/usr/include/qt5/QtGui/qkeysequence.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtabwidget.h /usr/include/qt5/QtGui/qicon.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QWidget /usr/include/qt5/QtWidgets/qwidget.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QVBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/qboxlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayoutitem.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qboxlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qgridlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QHBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/QTextEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/qtextedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractscrollarea.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qframe.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextdocument.h /usr/include/qt5/QtCore/qurl.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextoption.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextformat.h /usr/include/qt5/QtGui/qpen.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QLineEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/qlineedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QPushButton \
|
||||||
|
/usr/include/qt5/QtWidgets/qpushbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QLabel /usr/include/qt5/QtWidgets/qlabel.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QColorDialog \
|
||||||
|
/usr/include/qt5/QtWidgets/qcolordialog.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qdialog.h /usr/include/qt5/QtWidgets/QSlider \
|
||||||
|
/usr/include/qt5/QtWidgets/qslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QSpinBox \
|
||||||
|
/usr/include/qt5/QtWidgets/qspinbox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractspinbox.h \
|
||||||
|
/usr/include/qt5/QtGui/qvalidator.h \
|
||||||
|
/usr/include/qt5/QtCore/qregularexpression.h \
|
||||||
|
/usr/include/qt5/QtNetwork/QSslSocket \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetworkglobal.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetwork-config.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtcpsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qabstractsocket.h \
|
||||||
|
/usr/include/qt5/QtCore/qdebug.h /usr/include/qt5/QtCore/qtextstream.h \
|
||||||
|
/usr/include/qt5/QtCore/qset.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontiguouscache.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslerror.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslcertificate.h \
|
||||||
|
/usr/include/qt5/QtCore/qcryptographichash.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatetime.h /usr/include/qt5/QtNetwork/qssl.h \
|
||||||
|
/usr/include/qt5/QtCore/QFlags /usr/include/qt5/QtCore/qflags.h \
|
||||||
|
/usr/include/qt5/QtNetwork/QHostAddress \
|
||||||
|
/usr/include/qt5/QtNetwork/qhostaddress.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QMessageBox \
|
||||||
|
/usr/include/qt5/QtWidgets/qmessagebox.h /usr/include/qt5/QtCore/QThread \
|
||||||
|
/usr/include/qt5/QtCore/qthread.h \
|
||||||
|
/usr/include/qt5/QtCore/qdeadlinetimer.h \
|
||||||
|
/usr/include/qt5/QtCore/qelapsedtimer.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/future \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/mutex \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_lock.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/condition_variable \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_futex.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_thread.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype \
|
||||||
|
/usr/include/wctype.h /usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/include/main.moc \
|
||||||
|
/usr/include/qt5/QtCore/QList /usr/include/qt5/QtCore/qlist.h
|
||||||
228
build/CMakeFiles/chat_client_qt_autogen.dir/AutogenInfo.json
Normal file
228
build/CMakeFiles/chat_client_qt_autogen.dir/AutogenInfo.json
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
{
|
||||||
|
"BUILD_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen",
|
||||||
|
"CMAKE_BINARY_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build",
|
||||||
|
"CMAKE_CURRENT_BINARY_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build",
|
||||||
|
"CMAKE_CURRENT_SOURCE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat",
|
||||||
|
"CMAKE_EXECUTABLE" : "/usr/bin/cmake",
|
||||||
|
"CMAKE_LIST_FILES" :
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystem.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeUnixFindMake.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeFindBinUtils.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/FeatureTesting.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/usr/share/cmake/Modules/FindOpenSSL.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPkgConfig.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5Config.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseArguments.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseArguments.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake"
|
||||||
|
],
|
||||||
|
"CMAKE_SOURCE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat",
|
||||||
|
"CROSS_CONFIG" : false,
|
||||||
|
"DEP_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/deps",
|
||||||
|
"DEP_FILE_RULE_NAME" : "chat_client_qt_autogen/timestamp",
|
||||||
|
"HEADERS" : [],
|
||||||
|
"HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ],
|
||||||
|
"INCLUDE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/include",
|
||||||
|
"MOC_COMPILATION_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/mocs_compilation.cpp",
|
||||||
|
"MOC_DEFINITIONS" :
|
||||||
|
[
|
||||||
|
"QT_CORE_LIB",
|
||||||
|
"QT_GUI_LIB",
|
||||||
|
"QT_NETWORK_LIB",
|
||||||
|
"QT_NO_DEBUG",
|
||||||
|
"QT_WIDGETS_LIB"
|
||||||
|
],
|
||||||
|
"MOC_DEPEND_FILTERS" :
|
||||||
|
[
|
||||||
|
[
|
||||||
|
"Q_PLUGIN_METADATA",
|
||||||
|
"[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\""
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"MOC_INCLUDES" :
|
||||||
|
[
|
||||||
|
"/usr/include/qt5",
|
||||||
|
"/usr/include/qt5/QtCore",
|
||||||
|
"/usr/lib64/qt5/mkspecs/linux-g++",
|
||||||
|
"/usr/include/qt5/QtGui",
|
||||||
|
"/usr/include/qt5/QtWidgets",
|
||||||
|
"/usr/include/qt5/QtNetwork",
|
||||||
|
"/usr/include",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include",
|
||||||
|
"/usr/local/include"
|
||||||
|
],
|
||||||
|
"MOC_MACRO_NAMES" : [ "Q_OBJECT", "Q_GADGET", "Q_NAMESPACE", "Q_NAMESPACE_EXPORT" ],
|
||||||
|
"MOC_OPTIONS" : [],
|
||||||
|
"MOC_PATH_PREFIX" : false,
|
||||||
|
"MOC_PREDEFS_CMD" :
|
||||||
|
[
|
||||||
|
"/usr/bin/c++",
|
||||||
|
"-std=gnu++17",
|
||||||
|
"-w",
|
||||||
|
"-dM",
|
||||||
|
"-E",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp"
|
||||||
|
],
|
||||||
|
"MOC_PREDEFS_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/moc_predefs.h",
|
||||||
|
"MOC_RELAXED_MODE" : false,
|
||||||
|
"MOC_SKIP" :
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp"
|
||||||
|
],
|
||||||
|
"MULTI_CONFIG" : false,
|
||||||
|
"PARALLEL" : 8,
|
||||||
|
"PARSE_CACHE_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir/ParseCache.txt",
|
||||||
|
"QT_MOC_EXECUTABLE" : "/usr/lib64/qt5/bin/moc",
|
||||||
|
"QT_UIC_EXECUTABLE" : "/usr/lib64/qt5/bin/uic",
|
||||||
|
"QT_VERSION_MAJOR" : 5,
|
||||||
|
"QT_VERSION_MINOR" : 15,
|
||||||
|
"SETTINGS_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir/AutogenUsed.txt",
|
||||||
|
"SOURCES" :
|
||||||
|
[
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp",
|
||||||
|
"MU",
|
||||||
|
null
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"UIC_OPTIONS" : [],
|
||||||
|
"UIC_SEARCH_PATHS" : [],
|
||||||
|
"UIC_SKIP" :
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp"
|
||||||
|
],
|
||||||
|
"UIC_UI_FILES" : [],
|
||||||
|
"USE_BETTER_GRAPH" : false,
|
||||||
|
"VERBOSITY" : 0
|
||||||
|
}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
moc:c5dde607b2c4b2254a93d7203c206e3c9fb25d9504661a1d079bc7dfe6b37004
|
||||||
|
uic:bb76be4a2222010708a9e4426a388dfe11264e4eda54aa3c0e4562b324985d57
|
||||||
23
build/CMakeFiles/chat_client_qt_autogen.dir/DependInfo.cmake
Normal file
23
build/CMakeFiles/chat_client_qt_autogen.dir/DependInfo.cmake
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"" "chat_client_qt_autogen/timestamp" "custom" "chat_client_qt_autogen/deps"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
451
build/CMakeFiles/chat_client_qt_autogen.dir/ParseCache.txt
Normal file
451
build/CMakeFiles/chat_client_qt_autogen.dir/ParseCache.txt
Normal file
@ -0,0 +1,451 @@
|
|||||||
|
# Generated by CMake. Changes will be overwritten.
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp
|
||||||
|
mmc:Q_OBJECT
|
||||||
|
mid:main.moc
|
||||||
|
mdp:/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/moc_predefs.h
|
||||||
|
mdp:/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp
|
||||||
|
mdp:/usr/include/alloca.h
|
||||||
|
mdp:/usr/include/asm-generic/bitsperlong.h
|
||||||
|
mdp:/usr/include/asm-generic/errno-base.h
|
||||||
|
mdp:/usr/include/asm-generic/errno.h
|
||||||
|
mdp:/usr/include/asm-generic/int-ll64.h
|
||||||
|
mdp:/usr/include/asm-generic/posix_types.h
|
||||||
|
mdp:/usr/include/asm-generic/types.h
|
||||||
|
mdp:/usr/include/asm/bitsperlong.h
|
||||||
|
mdp:/usr/include/asm/errno.h
|
||||||
|
mdp:/usr/include/asm/posix_types.h
|
||||||
|
mdp:/usr/include/asm/posix_types_64.h
|
||||||
|
mdp:/usr/include/asm/types.h
|
||||||
|
mdp:/usr/include/asm/unistd.h
|
||||||
|
mdp:/usr/include/asm/unistd_64.h
|
||||||
|
mdp:/usr/include/assert.h
|
||||||
|
mdp:/usr/include/bits/atomic_wide_counter.h
|
||||||
|
mdp:/usr/include/bits/byteswap.h
|
||||||
|
mdp:/usr/include/bits/confname.h
|
||||||
|
mdp:/usr/include/bits/cpu-set.h
|
||||||
|
mdp:/usr/include/bits/endian.h
|
||||||
|
mdp:/usr/include/bits/endianness.h
|
||||||
|
mdp:/usr/include/bits/environments.h
|
||||||
|
mdp:/usr/include/bits/errno.h
|
||||||
|
mdp:/usr/include/bits/floatn-common.h
|
||||||
|
mdp:/usr/include/bits/floatn.h
|
||||||
|
mdp:/usr/include/bits/getopt_core.h
|
||||||
|
mdp:/usr/include/bits/getopt_posix.h
|
||||||
|
mdp:/usr/include/bits/libc-header-start.h
|
||||||
|
mdp:/usr/include/bits/local_lim.h
|
||||||
|
mdp:/usr/include/bits/locale.h
|
||||||
|
mdp:/usr/include/bits/long-double.h
|
||||||
|
mdp:/usr/include/bits/posix1_lim.h
|
||||||
|
mdp:/usr/include/bits/posix2_lim.h
|
||||||
|
mdp:/usr/include/bits/posix_opt.h
|
||||||
|
mdp:/usr/include/bits/pthread_stack_min-dynamic.h
|
||||||
|
mdp:/usr/include/bits/pthreadtypes-arch.h
|
||||||
|
mdp:/usr/include/bits/pthreadtypes.h
|
||||||
|
mdp:/usr/include/bits/sched.h
|
||||||
|
mdp:/usr/include/bits/select.h
|
||||||
|
mdp:/usr/include/bits/setjmp.h
|
||||||
|
mdp:/usr/include/bits/stdint-intn.h
|
||||||
|
mdp:/usr/include/bits/stdio_lim.h
|
||||||
|
mdp:/usr/include/bits/stdlib-float.h
|
||||||
|
mdp:/usr/include/bits/struct_mutex.h
|
||||||
|
mdp:/usr/include/bits/struct_rwlock.h
|
||||||
|
mdp:/usr/include/bits/syscall.h
|
||||||
|
mdp:/usr/include/bits/thread-shared-types.h
|
||||||
|
mdp:/usr/include/bits/time.h
|
||||||
|
mdp:/usr/include/bits/time64.h
|
||||||
|
mdp:/usr/include/bits/timesize.h
|
||||||
|
mdp:/usr/include/bits/timex.h
|
||||||
|
mdp:/usr/include/bits/types.h
|
||||||
|
mdp:/usr/include/bits/types/FILE.h
|
||||||
|
mdp:/usr/include/bits/types/__FILE.h
|
||||||
|
mdp:/usr/include/bits/types/__fpos64_t.h
|
||||||
|
mdp:/usr/include/bits/types/__fpos_t.h
|
||||||
|
mdp:/usr/include/bits/types/__locale_t.h
|
||||||
|
mdp:/usr/include/bits/types/__mbstate_t.h
|
||||||
|
mdp:/usr/include/bits/types/__sigset_t.h
|
||||||
|
mdp:/usr/include/bits/types/clock_t.h
|
||||||
|
mdp:/usr/include/bits/types/clockid_t.h
|
||||||
|
mdp:/usr/include/bits/types/cookie_io_functions_t.h
|
||||||
|
mdp:/usr/include/bits/types/error_t.h
|
||||||
|
mdp:/usr/include/bits/types/locale_t.h
|
||||||
|
mdp:/usr/include/bits/types/mbstate_t.h
|
||||||
|
mdp:/usr/include/bits/types/sigset_t.h
|
||||||
|
mdp:/usr/include/bits/types/struct_FILE.h
|
||||||
|
mdp:/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||||
|
mdp:/usr/include/bits/types/struct_itimerspec.h
|
||||||
|
mdp:/usr/include/bits/types/struct_sched_param.h
|
||||||
|
mdp:/usr/include/bits/types/struct_timespec.h
|
||||||
|
mdp:/usr/include/bits/types/struct_timeval.h
|
||||||
|
mdp:/usr/include/bits/types/struct_tm.h
|
||||||
|
mdp:/usr/include/bits/types/time_t.h
|
||||||
|
mdp:/usr/include/bits/types/timer_t.h
|
||||||
|
mdp:/usr/include/bits/types/wint_t.h
|
||||||
|
mdp:/usr/include/bits/typesizes.h
|
||||||
|
mdp:/usr/include/bits/uintn-identity.h
|
||||||
|
mdp:/usr/include/bits/uio_lim.h
|
||||||
|
mdp:/usr/include/bits/unistd_ext.h
|
||||||
|
mdp:/usr/include/bits/waitflags.h
|
||||||
|
mdp:/usr/include/bits/waitstatus.h
|
||||||
|
mdp:/usr/include/bits/wchar.h
|
||||||
|
mdp:/usr/include/bits/wctype-wchar.h
|
||||||
|
mdp:/usr/include/bits/wordsize.h
|
||||||
|
mdp:/usr/include/bits/xopen_lim.h
|
||||||
|
mdp:/usr/include/ctype.h
|
||||||
|
mdp:/usr/include/endian.h
|
||||||
|
mdp:/usr/include/errno.h
|
||||||
|
mdp:/usr/include/features-time64.h
|
||||||
|
mdp:/usr/include/features.h
|
||||||
|
mdp:/usr/include/gnu/stubs-64.h
|
||||||
|
mdp:/usr/include/gnu/stubs.h
|
||||||
|
mdp:/usr/include/limits.h
|
||||||
|
mdp:/usr/include/linux/errno.h
|
||||||
|
mdp:/usr/include/linux/limits.h
|
||||||
|
mdp:/usr/include/linux/posix_types.h
|
||||||
|
mdp:/usr/include/linux/stddef.h
|
||||||
|
mdp:/usr/include/linux/types.h
|
||||||
|
mdp:/usr/include/locale.h
|
||||||
|
mdp:/usr/include/pthread.h
|
||||||
|
mdp:/usr/include/qt5/Gentoo/gentoo-qconfig.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/QFlags
|
||||||
|
mdp:/usr/include/qt5/QtCore/QThread
|
||||||
|
mdp:/usr/include/qt5/QtCore/qalgorithms.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qarraydata.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qatomic.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qatomic_cxx11.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qbasicatomic.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qbytearray.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qbytearraylist.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qchar.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcompilerdetection.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qconfig.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcontainerfwd.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcontainertools_impl.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcontiguouscache.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcoreapplication.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcoreevent.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qcryptographichash.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qdatastream.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qdatetime.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qdeadlinetimer.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qdebug.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qelapsedtimer.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qeventloop.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qflags.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qgenericatomic.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qglobal.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qglobalstatic.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qhash.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qhashfunctions.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qiodevice.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qiterator.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qline.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qlist.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qlocale.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qlogging.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qmap.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qmargins.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qmetatype.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qnamespace.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qnumeric.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qobject.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qobject_impl.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qobjectdefs.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qobjectdefs_impl.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qpair.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qpoint.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qprocessordetection.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qrect.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qrefcount.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qregexp.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qregularexpression.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qscopedpointer.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qset.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qshareddata.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qsharedpointer.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qsharedpointer_impl.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qsize.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstring.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstringalgorithms.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstringlist.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstringliteral.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstringmatcher.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qstringview.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qsysinfo.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qsystemdetection.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qtcore-config.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qtextstream.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qthread.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qtypeinfo.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qurl.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qvariant.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qvarlengtharray.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qvector.h
|
||||||
|
mdp:/usr/include/qt5/QtCore/qversiontagging.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qbrush.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qcolor.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qcursor.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qfont.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qfontinfo.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qfontmetrics.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qguiapplication.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qicon.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qimage.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qinputmethod.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qkeysequence.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qmatrix.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpaintdevice.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpalette.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpen.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpixelformat.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpixmap.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qpolygon.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qregion.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qrgb.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qrgba64.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtextcursor.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtextdocument.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtextformat.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtextoption.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtgui-config.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtguiglobal.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qtransform.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qvalidator.h
|
||||||
|
mdp:/usr/include/qt5/QtGui/qwindowdefs.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/QHostAddress
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/QSslSocket
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qabstractsocket.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qhostaddress.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qssl.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qsslcertificate.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qsslerror.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qsslsocket.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qtcpsocket.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qtnetwork-config.h
|
||||||
|
mdp:/usr/include/qt5/QtNetwork/qtnetworkglobal.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QApplication
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QColorDialog
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QHBoxLayout
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QLabel
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QLineEdit
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QMainWindow
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QMessageBox
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QPushButton
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QSlider
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QSpinBox
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QTextEdit
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QVBoxLayout
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/QWidget
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qabstractbutton.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qabstractscrollarea.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qabstractslider.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qabstractspinbox.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qapplication.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qboxlayout.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qcolordialog.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qdialog.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qframe.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qgridlayout.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qlabel.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qlayout.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qlayoutitem.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qlineedit.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qmainwindow.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qmessagebox.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qpushbutton.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qsizepolicy.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qslider.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qspinbox.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qtabwidget.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qtextedit.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qtwidgets-config.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qtwidgetsglobal.h
|
||||||
|
mdp:/usr/include/qt5/QtWidgets/qwidget.h
|
||||||
|
mdp:/usr/include/sched.h
|
||||||
|
mdp:/usr/include/stdc-predef.h
|
||||||
|
mdp:/usr/include/stdio.h
|
||||||
|
mdp:/usr/include/stdlib.h
|
||||||
|
mdp:/usr/include/string.h
|
||||||
|
mdp:/usr/include/strings.h
|
||||||
|
mdp:/usr/include/sys/cdefs.h
|
||||||
|
mdp:/usr/include/sys/select.h
|
||||||
|
mdp:/usr/include/sys/syscall.h
|
||||||
|
mdp:/usr/include/sys/types.h
|
||||||
|
mdp:/usr/include/syscall.h
|
||||||
|
mdp:/usr/include/time.h
|
||||||
|
mdp:/usr/include/unistd.h
|
||||||
|
mdp:/usr/include/wchar.h
|
||||||
|
mdp:/usr/include/wctype.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/array
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/atomic
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_wait.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/c++0x_warning.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/erase_if.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/formatfwd.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/iterator_concepts.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/list.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/max_size_type.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/mofunc_impl.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/monostate.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move_only_function.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/node_handle.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/out_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algo.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algobase.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_base.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_cmp.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_uninitialized.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_util.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/sat_arith.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_function.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_list.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_map.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_multimap.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_numeric.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_relops.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tree.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stream_iterator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cerrno
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/charconv
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/climits
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/compare
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/format
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/functional
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/future
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iterator
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/list
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/map
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numbers
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numeric
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/optional
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_numeric_defs.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/text_encoding
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/unordered_map
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/utility
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h
|
||||||
|
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h
|
||||||
97
build/CMakeFiles/chat_client_qt_autogen.dir/build.make
Normal file
97
build/CMakeFiles/chat_client_qt_autogen.dir/build.make
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Utility rule file for chat_client_qt_autogen.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/chat_client_qt_autogen.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_client_qt_autogen.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen: chat_client_qt_autogen/timestamp
|
||||||
|
|
||||||
|
chat_client_qt_autogen/timestamp: /usr/lib64/qt5/bin/moc
|
||||||
|
chat_client_qt_autogen/timestamp: /usr/lib64/qt5/bin/uic
|
||||||
|
chat_client_qt_autogen/timestamp: CMakeFiles/chat_client_qt_autogen.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target chat_client_qt"
|
||||||
|
/usr/bin/cmake -E cmake_autogen /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir/AutogenInfo.json ""
|
||||||
|
/usr/bin/cmake -E touch /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/timestamp
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/codegen
|
||||||
|
|
||||||
|
chat_client_qt_autogen: CMakeFiles/chat_client_qt_autogen
|
||||||
|
chat_client_qt_autogen: chat_client_qt_autogen/timestamp
|
||||||
|
chat_client_qt_autogen: CMakeFiles/chat_client_qt_autogen.dir/build.make
|
||||||
|
.PHONY : chat_client_qt_autogen
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/build: chat_client_qt_autogen
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_client_qt_autogen.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen.dir/depend:
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/chat_client_qt_autogen"
|
||||||
|
"chat_client_qt_autogen/mocs_compilation.cpp"
|
||||||
|
"chat_client_qt_autogen/timestamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/chat_client_qt_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty custom commands generated dependencies file for chat_client_qt_autogen.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for chat_client_qt_autogen.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 5
|
||||||
|
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Utility rule file for chat_client_qt_autogen_timestamp_deps.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/codegen
|
||||||
|
|
||||||
|
chat_client_qt_autogen_timestamp_deps: CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make
|
||||||
|
.PHONY : chat_client_qt_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build: chat_client_qt_autogen_timestamp_deps
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/depend:
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty custom commands generated dependencies file for chat_client_qt_autogen_timestamp_deps.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for chat_client_qt_autogen_timestamp_deps.
|
||||||
@ -0,0 +1 @@
|
|||||||
|
|
||||||
26
build/CMakeFiles/chat_server.dir/DependInfo.cmake
Normal file
26
build/CMakeFiles/chat_server.dir/DependInfo.cmake
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"" "chat_server_autogen/timestamp" "custom" "chat_server_autogen/deps"
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp" "CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o.d"
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp" "CMakeFiles/chat_server.dir/src/server/server.cpp.o" "gcc" "CMakeFiles/chat_server.dir/src/server/server.cpp.o.d"
|
||||||
|
"" "chat_server" "gcc" "CMakeFiles/chat_server.dir/link.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
139
build/CMakeFiles/chat_server.dir/build.make
Normal file
139
build/CMakeFiles/chat_server.dir/build.make
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/chat_server.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/chat_server.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_server.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/chat_server.dir/flags.make
|
||||||
|
|
||||||
|
chat_server_autogen/timestamp: /usr/lib64/qt5/bin/moc
|
||||||
|
chat_server_autogen/timestamp: /usr/lib64/qt5/bin/uic
|
||||||
|
chat_server_autogen/timestamp: CMakeFiles/chat_server.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target chat_server"
|
||||||
|
/usr/bin/cmake -E cmake_autogen /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir/AutogenInfo.json ""
|
||||||
|
/usr/bin/cmake -E touch /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/timestamp
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/codegen
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o: CMakeFiles/chat_server.dir/flags.make
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o: chat_server_autogen/mocs_compilation.cpp
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o: CMakeFiles/chat_server.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o -MF CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o -c /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp > CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp -o CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o: CMakeFiles/chat_server.dir/flags.make
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o: /home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o: CMakeFiles/chat_server.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/chat_server.dir/src/server/server.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/chat_server.dir/src/server/server.cpp.o -MF CMakeFiles/chat_server.dir/src/server/server.cpp.o.d -o CMakeFiles/chat_server.dir/src/server/server.cpp.o -c /home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/chat_server.dir/src/server/server.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp > CMakeFiles/chat_server.dir/src/server/server.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/chat_server.dir/src/server/server.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp -o CMakeFiles/chat_server.dir/src/server/server.cpp.s
|
||||||
|
|
||||||
|
# Object files for target chat_server
|
||||||
|
chat_server_OBJECTS = \
|
||||||
|
"CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o" \
|
||||||
|
"CMakeFiles/chat_server.dir/src/server/server.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target chat_server
|
||||||
|
chat_server_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/src/server/server.cpp.o
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/build.make
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/compiler_depend.ts
|
||||||
|
chat_server: /usr/lib64/libssl.so
|
||||||
|
chat_server: /usr/lib64/libcrypto.so
|
||||||
|
chat_server: CMakeFiles/chat_server.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable chat_server"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/chat_server.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_server.dir/build: chat_server
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_server.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/depend: chat_server_autogen/timestamp
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_server.dir/depend
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp \
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
19
build/CMakeFiles/chat_server.dir/cmake_clean.cmake
Normal file
19
build/CMakeFiles/chat_server.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/chat_server.dir/link.d"
|
||||||
|
"CMakeFiles/chat_server_autogen.dir/AutogenUsed.txt"
|
||||||
|
"CMakeFiles/chat_server_autogen.dir/ParseCache.txt"
|
||||||
|
"chat_server_autogen"
|
||||||
|
"CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o"
|
||||||
|
"CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o.d"
|
||||||
|
"CMakeFiles/chat_server.dir/src/server/server.cpp.o"
|
||||||
|
"CMakeFiles/chat_server.dir/src/server/server.cpp.o.d"
|
||||||
|
"chat_server"
|
||||||
|
"chat_server.pdb"
|
||||||
|
"chat_server_autogen/mocs_compilation.cpp"
|
||||||
|
"chat_server_autogen/timestamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/chat_server.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
505
build/CMakeFiles/chat_server.dir/compiler_depend.internal
Normal file
505
build/CMakeFiles/chat_server.dir/compiler_depend.internal
Normal file
@ -0,0 +1,505 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/timestamp
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
|
/usr/bin/cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
|
/usr/include/alloca.h
|
||||||
|
/usr/include/arpa/inet.h
|
||||||
|
/usr/include/asm-generic/bitsperlong.h
|
||||||
|
/usr/include/asm-generic/errno-base.h
|
||||||
|
/usr/include/asm-generic/errno.h
|
||||||
|
/usr/include/asm-generic/int-ll64.h
|
||||||
|
/usr/include/asm-generic/posix_types.h
|
||||||
|
/usr/include/asm-generic/socket.h
|
||||||
|
/usr/include/asm-generic/sockios.h
|
||||||
|
/usr/include/asm-generic/types.h
|
||||||
|
/usr/include/asm/bitsperlong.h
|
||||||
|
/usr/include/asm/errno.h
|
||||||
|
/usr/include/asm/posix_types.h
|
||||||
|
/usr/include/asm/posix_types_64.h
|
||||||
|
/usr/include/asm/socket.h
|
||||||
|
/usr/include/asm/sockios.h
|
||||||
|
/usr/include/asm/types.h
|
||||||
|
/usr/include/bits/atomic_wide_counter.h
|
||||||
|
/usr/include/bits/byteswap.h
|
||||||
|
/usr/include/bits/confname.h
|
||||||
|
/usr/include/bits/cpu-set.h
|
||||||
|
/usr/include/bits/endian.h
|
||||||
|
/usr/include/bits/endianness.h
|
||||||
|
/usr/include/bits/environments.h
|
||||||
|
/usr/include/bits/errno.h
|
||||||
|
/usr/include/bits/floatn-common.h
|
||||||
|
/usr/include/bits/floatn.h
|
||||||
|
/usr/include/bits/getopt_core.h
|
||||||
|
/usr/include/bits/getopt_posix.h
|
||||||
|
/usr/include/bits/in.h
|
||||||
|
/usr/include/bits/libc-header-start.h
|
||||||
|
/usr/include/bits/local_lim.h
|
||||||
|
/usr/include/bits/locale.h
|
||||||
|
/usr/include/bits/long-double.h
|
||||||
|
/usr/include/bits/posix1_lim.h
|
||||||
|
/usr/include/bits/posix2_lim.h
|
||||||
|
/usr/include/bits/posix_opt.h
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h
|
||||||
|
/usr/include/bits/pthreadtypes.h
|
||||||
|
/usr/include/bits/sched.h
|
||||||
|
/usr/include/bits/select.h
|
||||||
|
/usr/include/bits/setjmp.h
|
||||||
|
/usr/include/bits/sigaction.h
|
||||||
|
/usr/include/bits/sigcontext.h
|
||||||
|
/usr/include/bits/sigevent-consts.h
|
||||||
|
/usr/include/bits/siginfo-arch.h
|
||||||
|
/usr/include/bits/siginfo-consts-arch.h
|
||||||
|
/usr/include/bits/siginfo-consts.h
|
||||||
|
/usr/include/bits/signal_ext.h
|
||||||
|
/usr/include/bits/signum-arch.h
|
||||||
|
/usr/include/bits/signum-generic.h
|
||||||
|
/usr/include/bits/sigstack.h
|
||||||
|
/usr/include/bits/sigstksz.h
|
||||||
|
/usr/include/bits/sigthread.h
|
||||||
|
/usr/include/bits/sockaddr.h
|
||||||
|
/usr/include/bits/socket.h
|
||||||
|
/usr/include/bits/socket_type.h
|
||||||
|
/usr/include/bits/ss_flags.h
|
||||||
|
/usr/include/bits/stdint-intn.h
|
||||||
|
/usr/include/bits/stdint-least.h
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
|
/usr/include/bits/stdio_lim.h
|
||||||
|
/usr/include/bits/stdlib-float.h
|
||||||
|
/usr/include/bits/struct_mutex.h
|
||||||
|
/usr/include/bits/struct_rwlock.h
|
||||||
|
/usr/include/bits/thread-shared-types.h
|
||||||
|
/usr/include/bits/time.h
|
||||||
|
/usr/include/bits/time64.h
|
||||||
|
/usr/include/bits/timesize.h
|
||||||
|
/usr/include/bits/timex.h
|
||||||
|
/usr/include/bits/types.h
|
||||||
|
/usr/include/bits/types/FILE.h
|
||||||
|
/usr/include/bits/types/__FILE.h
|
||||||
|
/usr/include/bits/types/__fpos64_t.h
|
||||||
|
/usr/include/bits/types/__fpos_t.h
|
||||||
|
/usr/include/bits/types/__locale_t.h
|
||||||
|
/usr/include/bits/types/__mbstate_t.h
|
||||||
|
/usr/include/bits/types/__sigset_t.h
|
||||||
|
/usr/include/bits/types/__sigval_t.h
|
||||||
|
/usr/include/bits/types/clock_t.h
|
||||||
|
/usr/include/bits/types/clockid_t.h
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h
|
||||||
|
/usr/include/bits/types/error_t.h
|
||||||
|
/usr/include/bits/types/locale_t.h
|
||||||
|
/usr/include/bits/types/mbstate_t.h
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h
|
||||||
|
/usr/include/bits/types/sigevent_t.h
|
||||||
|
/usr/include/bits/types/siginfo_t.h
|
||||||
|
/usr/include/bits/types/sigset_t.h
|
||||||
|
/usr/include/bits/types/sigval_t.h
|
||||||
|
/usr/include/bits/types/stack_t.h
|
||||||
|
/usr/include/bits/types/struct_FILE.h
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||||
|
/usr/include/bits/types/struct_iovec.h
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h
|
||||||
|
/usr/include/bits/types/struct_osockaddr.h
|
||||||
|
/usr/include/bits/types/struct_sched_param.h
|
||||||
|
/usr/include/bits/types/struct_sigstack.h
|
||||||
|
/usr/include/bits/types/struct_timespec.h
|
||||||
|
/usr/include/bits/types/struct_timeval.h
|
||||||
|
/usr/include/bits/types/struct_tm.h
|
||||||
|
/usr/include/bits/types/time_t.h
|
||||||
|
/usr/include/bits/types/timer_t.h
|
||||||
|
/usr/include/bits/types/wint_t.h
|
||||||
|
/usr/include/bits/typesizes.h
|
||||||
|
/usr/include/bits/uintn-identity.h
|
||||||
|
/usr/include/bits/uio_lim.h
|
||||||
|
/usr/include/bits/unistd_ext.h
|
||||||
|
/usr/include/bits/waitflags.h
|
||||||
|
/usr/include/bits/waitstatus.h
|
||||||
|
/usr/include/bits/wchar.h
|
||||||
|
/usr/include/bits/wctype-wchar.h
|
||||||
|
/usr/include/bits/wordsize.h
|
||||||
|
/usr/include/bits/xopen_lim.h
|
||||||
|
/usr/include/ctype.h
|
||||||
|
/usr/include/endian.h
|
||||||
|
/usr/include/errno.h
|
||||||
|
/usr/include/features-time64.h
|
||||||
|
/usr/include/features.h
|
||||||
|
/usr/include/gnu/stubs-64.h
|
||||||
|
/usr/include/gnu/stubs.h
|
||||||
|
/usr/include/limits.h
|
||||||
|
/usr/include/linux/close_range.h
|
||||||
|
/usr/include/linux/errno.h
|
||||||
|
/usr/include/linux/limits.h
|
||||||
|
/usr/include/linux/posix_types.h
|
||||||
|
/usr/include/linux/sched/types.h
|
||||||
|
/usr/include/linux/stddef.h
|
||||||
|
/usr/include/linux/types.h
|
||||||
|
/usr/include/locale.h
|
||||||
|
/usr/include/netinet/in.h
|
||||||
|
/usr/include/openssl/asn1.h
|
||||||
|
/usr/include/openssl/asn1err.h
|
||||||
|
/usr/include/openssl/async.h
|
||||||
|
/usr/include/openssl/asyncerr.h
|
||||||
|
/usr/include/openssl/bio.h
|
||||||
|
/usr/include/openssl/bioerr.h
|
||||||
|
/usr/include/openssl/bn.h
|
||||||
|
/usr/include/openssl/bnerr.h
|
||||||
|
/usr/include/openssl/buffer.h
|
||||||
|
/usr/include/openssl/buffererr.h
|
||||||
|
/usr/include/openssl/comp.h
|
||||||
|
/usr/include/openssl/comperr.h
|
||||||
|
/usr/include/openssl/conf.h
|
||||||
|
/usr/include/openssl/conferr.h
|
||||||
|
/usr/include/openssl/configuration.h
|
||||||
|
/usr/include/openssl/conftypes.h
|
||||||
|
/usr/include/openssl/core.h
|
||||||
|
/usr/include/openssl/core_dispatch.h
|
||||||
|
/usr/include/openssl/crypto.h
|
||||||
|
/usr/include/openssl/cryptoerr.h
|
||||||
|
/usr/include/openssl/cryptoerr_legacy.h
|
||||||
|
/usr/include/openssl/ct.h
|
||||||
|
/usr/include/openssl/cterr.h
|
||||||
|
/usr/include/openssl/dh.h
|
||||||
|
/usr/include/openssl/dherr.h
|
||||||
|
/usr/include/openssl/dsa.h
|
||||||
|
/usr/include/openssl/dsaerr.h
|
||||||
|
/usr/include/openssl/dtls1.h
|
||||||
|
/usr/include/openssl/e_os2.h
|
||||||
|
/usr/include/openssl/e_ostime.h
|
||||||
|
/usr/include/openssl/ec.h
|
||||||
|
/usr/include/openssl/ecerr.h
|
||||||
|
/usr/include/openssl/err.h
|
||||||
|
/usr/include/openssl/evp.h
|
||||||
|
/usr/include/openssl/evperr.h
|
||||||
|
/usr/include/openssl/hmac.h
|
||||||
|
/usr/include/openssl/http.h
|
||||||
|
/usr/include/openssl/indicator.h
|
||||||
|
/usr/include/openssl/lhash.h
|
||||||
|
/usr/include/openssl/macros.h
|
||||||
|
/usr/include/openssl/obj_mac.h
|
||||||
|
/usr/include/openssl/objects.h
|
||||||
|
/usr/include/openssl/objectserr.h
|
||||||
|
/usr/include/openssl/opensslconf.h
|
||||||
|
/usr/include/openssl/opensslv.h
|
||||||
|
/usr/include/openssl/params.h
|
||||||
|
/usr/include/openssl/pem.h
|
||||||
|
/usr/include/openssl/pemerr.h
|
||||||
|
/usr/include/openssl/pkcs7.h
|
||||||
|
/usr/include/openssl/pkcs7err.h
|
||||||
|
/usr/include/openssl/prov_ssl.h
|
||||||
|
/usr/include/openssl/quic.h
|
||||||
|
/usr/include/openssl/rsa.h
|
||||||
|
/usr/include/openssl/rsaerr.h
|
||||||
|
/usr/include/openssl/safestack.h
|
||||||
|
/usr/include/openssl/sha.h
|
||||||
|
/usr/include/openssl/srtp.h
|
||||||
|
/usr/include/openssl/ssl.h
|
||||||
|
/usr/include/openssl/ssl2.h
|
||||||
|
/usr/include/openssl/ssl3.h
|
||||||
|
/usr/include/openssl/sslerr.h
|
||||||
|
/usr/include/openssl/sslerr_legacy.h
|
||||||
|
/usr/include/openssl/stack.h
|
||||||
|
/usr/include/openssl/symhacks.h
|
||||||
|
/usr/include/openssl/tls1.h
|
||||||
|
/usr/include/openssl/types.h
|
||||||
|
/usr/include/openssl/x509.h
|
||||||
|
/usr/include/openssl/x509_vfy.h
|
||||||
|
/usr/include/openssl/x509err.h
|
||||||
|
/usr/include/pthread.h
|
||||||
|
/usr/include/sched.h
|
||||||
|
/usr/include/signal.h
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
|
/usr/include/stdint.h
|
||||||
|
/usr/include/stdio.h
|
||||||
|
/usr/include/stdlib.h
|
||||||
|
/usr/include/string.h
|
||||||
|
/usr/include/strings.h
|
||||||
|
/usr/include/sys/cdefs.h
|
||||||
|
/usr/include/sys/select.h
|
||||||
|
/usr/include/sys/single_threaded.h
|
||||||
|
/usr/include/sys/socket.h
|
||||||
|
/usr/include/sys/time.h
|
||||||
|
/usr/include/sys/types.h
|
||||||
|
/usr/include/sys/ucontext.h
|
||||||
|
/usr/include/time.h
|
||||||
|
/usr/include/unistd.h
|
||||||
|
/usr/include/wchar.h
|
||||||
|
/usr/include/wctype.h
|
||||||
|
/usr/include/x86_64-pc-linux-gnu/openssl/configuration.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/chrono.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/parse_numbers.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_thread.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/this_thread_sleep.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_lock.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cerrno
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdio
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstring
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ctime
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/mutex
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_memory_defs.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/pstl_config.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ratio
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdlib.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/system_error
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/thread
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/limits.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdint.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/syslimits.h
|
||||||
|
|
||||||
1490
build/CMakeFiles/chat_server.dir/compiler_depend.make
Normal file
1490
build/CMakeFiles/chat_server.dir/compiler_depend.make
Normal file
File diff suppressed because it is too large
Load Diff
2
build/CMakeFiles/chat_server.dir/compiler_depend.ts
Normal file
2
build/CMakeFiles/chat_server.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for chat_server.
|
||||||
2
build/CMakeFiles/chat_server.dir/depend.make
Normal file
2
build/CMakeFiles/chat_server.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for chat_server.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
10
build/CMakeFiles/chat_server.dir/flags.make
Normal file
10
build/CMakeFiles/chat_server.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
CXX_DEFINES =
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/include
|
||||||
|
|
||||||
|
CXX_FLAGS = -std=gnu++17 -Wall -Wextra -std=c++17
|
||||||
|
|
||||||
103
build/CMakeFiles/chat_server.dir/link.d
Normal file
103
build/CMakeFiles/chat_server.dir/link.d
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
chat_server: \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/Scrt1.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crti.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtbeginS.o \
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o \
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o \
|
||||||
|
/usr/lib64/libssl.so \
|
||||||
|
/usr/lib64/libcrypto.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libstdc++.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so \
|
||||||
|
/lib64/libm.so.6 \
|
||||||
|
/lib64/libmvec.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so \
|
||||||
|
/lib64/libc.so.6 \
|
||||||
|
/usr/lib64/libc_nonshared.a \
|
||||||
|
/lib64/ld-linux-x86-64.so.2 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1 \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtendS.o \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crtn.o \
|
||||||
|
/lib64/ld-linux-x86-64.so.2
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/Scrt1.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crti.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtbeginS.o:
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o:
|
||||||
|
|
||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o:
|
||||||
|
|
||||||
|
/usr/lib64/libssl.so:
|
||||||
|
|
||||||
|
/usr/lib64/libcrypto.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libstdc++.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libm.so:
|
||||||
|
|
||||||
|
/lib64/libm.so.6:
|
||||||
|
|
||||||
|
/lib64/libmvec.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/libc.so:
|
||||||
|
|
||||||
|
/lib64/libc.so.6:
|
||||||
|
|
||||||
|
/usr/lib64/libc_nonshared.a:
|
||||||
|
|
||||||
|
/lib64/ld-linux-x86-64.so.2:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc_s.so.1:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/libgcc.a:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/crtendS.o:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/../../../../lib64/crtn.o:
|
||||||
|
|
||||||
|
/lib64/ld-linux-x86-64.so.2:
|
||||||
1
build/CMakeFiles/chat_server.dir/link.txt
Normal file
1
build/CMakeFiles/chat_server.dir/link.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -Wl,--dependency-file=CMakeFiles/chat_server.dir/link.d CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o CMakeFiles/chat_server.dir/src/server/server.cpp.o -o chat_server /usr/lib64/libssl.so /usr/lib64/libcrypto.so
|
||||||
5
build/CMakeFiles/chat_server.dir/progress.make
Normal file
5
build/CMakeFiles/chat_server.dir/progress.make
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 6
|
||||||
|
CMAKE_PROGRESS_2 = 7
|
||||||
|
CMAKE_PROGRESS_3 = 8
|
||||||
|
CMAKE_PROGRESS_4 = 9
|
||||||
|
|
||||||
BIN
build/CMakeFiles/chat_server.dir/src/server/server.cpp.o
Normal file
BIN
build/CMakeFiles/chat_server.dir/src/server/server.cpp.o
Normal file
Binary file not shown.
272
build/CMakeFiles/chat_server.dir/src/server/server.cpp.o.d
Normal file
272
build/CMakeFiles/chat_server.dir/src/server/server.cpp.o.d
Normal file
@ -0,0 +1,272 @@
|
|||||||
|
CMakeFiles/chat_server.dir/src/server/server.cpp.o: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/pstl_config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h \
|
||||||
|
/usr/include/bits/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/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale \
|
||||||
|
/usr/include/locale.h /usr/include/bits/locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype \
|
||||||
|
/usr/include/ctype.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/sched.h \
|
||||||
|
/usr/include/linux/sched/types.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/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/atomic_wide_counter.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/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib \
|
||||||
|
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.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/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/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/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/system_error \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype \
|
||||||
|
/usr/include/wctype.h /usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/thread \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_thread.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/this_thread_sleep.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/chrono.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ratio \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/bits/stdint-least.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ctime \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/parse_numbers.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/mutex \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_lock.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_memory_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstring \
|
||||||
|
/usr/include/string.h /usr/include/strings.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_algorithm_defs.h \
|
||||||
|
/usr/include/openssl/ssl.h /usr/include/openssl/macros.h \
|
||||||
|
/usr/include/openssl/opensslconf.h /usr/include/openssl/configuration.h \
|
||||||
|
/usr/include/x86_64-pc-linux-gnu/openssl/configuration.h \
|
||||||
|
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||||
|
/usr/include/openssl/e_ostime.h /usr/include/sys/time.h \
|
||||||
|
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdlib.h \
|
||||||
|
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||||
|
/usr/include/openssl/types.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/limits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/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/openssl/cryptoerr.h \
|
||||||
|
/usr/include/openssl/symhacks.h /usr/include/openssl/cryptoerr_legacy.h \
|
||||||
|
/usr/include/openssl/core.h /usr/include/openssl/comperr.h \
|
||||||
|
/usr/include/openssl/bio.h /usr/include/openssl/bioerr.h \
|
||||||
|
/usr/include/openssl/x509.h /usr/include/openssl/buffer.h \
|
||||||
|
/usr/include/openssl/buffererr.h /usr/include/openssl/evp.h \
|
||||||
|
/usr/include/openssl/core_dispatch.h /usr/include/openssl/indicator.h \
|
||||||
|
/usr/include/openssl/params.h /usr/include/openssl/bn.h \
|
||||||
|
/usr/include/openssl/bnerr.h /usr/include/openssl/evperr.h \
|
||||||
|
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||||
|
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||||
|
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||||
|
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||||
|
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||||
|
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||||
|
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||||
|
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||||
|
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||||
|
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||||
|
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||||
|
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||||
|
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||||
|
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||||
|
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||||
|
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||||
|
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||||
|
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||||
|
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||||
|
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||||
|
/usr/include/sys/socket.h /usr/include/bits/types/struct_iovec.h \
|
||||||
|
/usr/include/bits/socket.h /usr/include/bits/socket_type.h \
|
||||||
|
/usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
|
||||||
|
/usr/include/asm-generic/socket.h /usr/include/asm/sockios.h \
|
||||||
|
/usr/include/asm-generic/sockios.h \
|
||||||
|
/usr/include/bits/types/struct_osockaddr.h /usr/include/netinet/in.h \
|
||||||
|
/usr/include/bits/in.h /usr/include/arpa/inet.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/linux/close_range.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/sigstksz.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
|
||||||
209
build/CMakeFiles/chat_server_autogen.dir/AutogenInfo.json
Normal file
209
build/CMakeFiles/chat_server_autogen.dir/AutogenInfo.json
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"BUILD_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen",
|
||||||
|
"CMAKE_BINARY_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build",
|
||||||
|
"CMAKE_CURRENT_BINARY_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build",
|
||||||
|
"CMAKE_CURRENT_SOURCE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat",
|
||||||
|
"CMAKE_EXECUTABLE" : "/usr/bin/cmake",
|
||||||
|
"CMAKE_LIST_FILES" :
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystem.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeUnixFindMake.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeFindBinUtils.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp",
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/FeatureTesting.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Linker/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linker/GNU.cmake",
|
||||||
|
"/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in",
|
||||||
|
"/usr/share/cmake/Modules/FindOpenSSL.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPkgConfig.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5Config.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseArguments.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake",
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseArguments.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake",
|
||||||
|
"/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake"
|
||||||
|
],
|
||||||
|
"CMAKE_SOURCE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat",
|
||||||
|
"CROSS_CONFIG" : false,
|
||||||
|
"DEP_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/deps",
|
||||||
|
"DEP_FILE_RULE_NAME" : "chat_server_autogen/timestamp",
|
||||||
|
"HEADERS" : [],
|
||||||
|
"HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ],
|
||||||
|
"INCLUDE_DIR" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/include",
|
||||||
|
"MOC_COMPILATION_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/mocs_compilation.cpp",
|
||||||
|
"MOC_DEFINITIONS" : [],
|
||||||
|
"MOC_DEPEND_FILTERS" :
|
||||||
|
[
|
||||||
|
[
|
||||||
|
"Q_PLUGIN_METADATA",
|
||||||
|
"[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\""
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"MOC_INCLUDES" :
|
||||||
|
[
|
||||||
|
"/usr/include",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward",
|
||||||
|
"/usr/lib/gcc/x86_64-pc-linux-gnu/15/include",
|
||||||
|
"/usr/local/include"
|
||||||
|
],
|
||||||
|
"MOC_MACRO_NAMES" : [ "Q_OBJECT", "Q_GADGET", "Q_NAMESPACE", "Q_NAMESPACE_EXPORT" ],
|
||||||
|
"MOC_OPTIONS" : [],
|
||||||
|
"MOC_PATH_PREFIX" : false,
|
||||||
|
"MOC_PREDEFS_CMD" :
|
||||||
|
[
|
||||||
|
"/usr/bin/c++",
|
||||||
|
"-std=gnu++17",
|
||||||
|
"-w",
|
||||||
|
"-dM",
|
||||||
|
"-E",
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp"
|
||||||
|
],
|
||||||
|
"MOC_PREDEFS_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/moc_predefs.h",
|
||||||
|
"MOC_RELAXED_MODE" : false,
|
||||||
|
"MOC_SKIP" : [],
|
||||||
|
"MULTI_CONFIG" : false,
|
||||||
|
"PARALLEL" : 8,
|
||||||
|
"PARSE_CACHE_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir/ParseCache.txt",
|
||||||
|
"QT_MOC_EXECUTABLE" : "/usr/lib64/qt5/bin/moc",
|
||||||
|
"QT_UIC_EXECUTABLE" : "/usr/lib64/qt5/bin/uic",
|
||||||
|
"QT_VERSION_MAJOR" : 5,
|
||||||
|
"QT_VERSION_MINOR" : 15,
|
||||||
|
"SETTINGS_FILE" : "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir/AutogenUsed.txt",
|
||||||
|
"SOURCES" :
|
||||||
|
[
|
||||||
|
[
|
||||||
|
"/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp",
|
||||||
|
"MU",
|
||||||
|
null
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"UIC_OPTIONS" : [],
|
||||||
|
"UIC_SEARCH_PATHS" : [],
|
||||||
|
"UIC_SKIP" : [],
|
||||||
|
"UIC_UI_FILES" : [],
|
||||||
|
"USE_BETTER_GRAPH" : false,
|
||||||
|
"VERBOSITY" : 0
|
||||||
|
}
|
||||||
2
build/CMakeFiles/chat_server_autogen.dir/AutogenUsed.txt
Normal file
2
build/CMakeFiles/chat_server_autogen.dir/AutogenUsed.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
moc:3aa173fe06bb6d245ce6a0bb0963306e478e7a6c278ed6976e771c6ccad3c8f2
|
||||||
|
uic:bb76be4a2222010708a9e4426a388dfe11264e4eda54aa3c0e4562b324985d57
|
||||||
23
build/CMakeFiles/chat_server_autogen.dir/DependInfo.cmake
Normal file
23
build/CMakeFiles/chat_server_autogen.dir/DependInfo.cmake
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"" "chat_server_autogen/timestamp" "custom" "chat_server_autogen/deps"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
2
build/CMakeFiles/chat_server_autogen.dir/ParseCache.txt
Normal file
2
build/CMakeFiles/chat_server_autogen.dir/ParseCache.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Generated by CMake. Changes will be overwritten.
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
97
build/CMakeFiles/chat_server_autogen.dir/build.make
Normal file
97
build/CMakeFiles/chat_server_autogen.dir/build.make
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Utility rule file for chat_server_autogen.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/chat_server_autogen.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_server_autogen.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen: chat_server_autogen/timestamp
|
||||||
|
|
||||||
|
chat_server_autogen/timestamp: /usr/lib64/qt5/bin/moc
|
||||||
|
chat_server_autogen/timestamp: /usr/lib64/qt5/bin/uic
|
||||||
|
chat_server_autogen/timestamp: CMakeFiles/chat_server_autogen.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target chat_server"
|
||||||
|
/usr/bin/cmake -E cmake_autogen /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir/AutogenInfo.json ""
|
||||||
|
/usr/bin/cmake -E touch /home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/timestamp
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/codegen
|
||||||
|
|
||||||
|
chat_server_autogen: CMakeFiles/chat_server_autogen
|
||||||
|
chat_server_autogen: chat_server_autogen/timestamp
|
||||||
|
chat_server_autogen: CMakeFiles/chat_server_autogen.dir/build.make
|
||||||
|
.PHONY : chat_server_autogen
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_server_autogen.dir/build: chat_server_autogen
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_server_autogen.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen.dir/depend:
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen.dir/depend
|
||||||
|
|
||||||
10
build/CMakeFiles/chat_server_autogen.dir/cmake_clean.cmake
Normal file
10
build/CMakeFiles/chat_server_autogen.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/chat_server_autogen"
|
||||||
|
"chat_server_autogen/mocs_compilation.cpp"
|
||||||
|
"chat_server_autogen/timestamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/chat_server_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,134 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server_autogen/timestamp
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp
|
||||||
|
/usr/bin/cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake
|
||||||
|
|
||||||
391
build/CMakeFiles/chat_server_autogen.dir/compiler_depend.make
Normal file
391
build/CMakeFiles/chat_server_autogen.dir/compiler_depend.make
Normal file
@ -0,0 +1,391 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
chat_server_autogen/timestamp: /home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt \
|
||||||
|
CMakeFiles/4.1.2/CMakeCXXCompiler.cmake \
|
||||||
|
CMakeFiles/4.1.2/CMakeSystem.cmake \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp \
|
||||||
|
/usr/bin/cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake
|
||||||
|
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake:
|
||||||
|
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake:
|
||||||
|
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake:
|
||||||
|
|
||||||
|
CMakeFiles/4.1.2/CMakeSystem.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/bin/cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in:
|
||||||
|
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
CMakeFiles/4.1.2/CMakeCXXCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:
|
||||||
|
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake:
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for chat_server_autogen.
|
||||||
2
build/CMakeFiles/chat_server_autogen.dir/progress.make
Normal file
2
build/CMakeFiles/chat_server_autogen.dir/progress.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 10
|
||||||
|
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
# 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 dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links which contain Fortran sources.
|
||||||
|
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
# Utility rule file for chat_server_autogen_timestamp_deps.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/chat_server_autogen_timestamp_deps.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/chat_server_autogen_timestamp_deps.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/codegen:
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/codegen
|
||||||
|
|
||||||
|
chat_server_autogen_timestamp_deps: CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make
|
||||||
|
.PHONY : chat_server_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/build: chat_server_autogen_timestamp_deps
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/chat_server_autogen_timestamp_deps.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/chat_server_autogen_timestamp_deps.dir/depend:
|
||||||
|
cd /home/ganome/Projects/SCAR-719/repos/scar-chat/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||||
|
.PHONY : CMakeFiles/chat_server_autogen_timestamp_deps.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/chat_server_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty custom commands generated dependencies file for chat_server_autogen_timestamp_deps.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for chat_server_autogen_timestamp_deps.
|
||||||
@ -0,0 +1 @@
|
|||||||
|
|
||||||
1
build/CMakeFiles/cmake.check_cache
Normal file
1
build/CMakeFiles/cmake.check_cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
build/CMakeFiles/progress.marks
Normal file
1
build/CMakeFiles/progress.marks
Normal file
@ -0,0 +1 @@
|
|||||||
|
10
|
||||||
381
build/Makefile
Normal file
381
build/Makefile
Normal file
@ -0,0 +1,381 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/ganome/Projects/SCAR-719/repos/scar-chat/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Targets provided globally by CMake.
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||||
|
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.PHONY : edit_cache
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache/fast: edit_cache
|
||||||
|
.PHONY : edit_cache/fast
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||||
|
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.PHONY : rebuild_cache
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache/fast: rebuild_cache
|
||||||
|
.PHONY : rebuild_cache/fast
|
||||||
|
|
||||||
|
# Special rule for the target list_install_components
|
||||||
|
list_install_components:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
|
||||||
|
.PHONY : 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 install
|
||||||
|
install: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||||
|
/usr/bin/cmake -P cmake_install.cmake
|
||||||
|
.PHONY : install
|
||||||
|
|
||||||
|
# Special rule for the target install
|
||||||
|
install/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||||
|
/usr/bin/cmake -P cmake_install.cmake
|
||||||
|
.PHONY : install/fast
|
||||||
|
|
||||||
|
# Special rule for the target install/local
|
||||||
|
install/local: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/local
|
||||||
|
|
||||||
|
# Special rule for the target install/local
|
||||||
|
install/local/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/local/fast
|
||||||
|
|
||||||
|
# Special rule for the target install/strip
|
||||||
|
install/strip: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/strip
|
||||||
|
|
||||||
|
# Special rule for the target install/strip
|
||||||
|
install/strip/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/strip/fast
|
||||||
|
|
||||||
|
# The main all target
|
||||||
|
all: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles /home/ganome/Projects/SCAR-719/repos/scar-chat/build//CMakeFiles/progress.marks
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles 0
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean/fast: clean
|
||||||
|
.PHONY : clean/fast
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall: all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall/fast
|
||||||
|
|
||||||
|
# clear depends
|
||||||
|
depend:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||||
|
.PHONY : depend
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_server
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_server: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_server
|
||||||
|
.PHONY : chat_server
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_server/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/build
|
||||||
|
.PHONY : chat_server/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_client_qt
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_client_qt: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_client_qt
|
||||||
|
.PHONY : chat_client_qt
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_client_qt/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/build
|
||||||
|
.PHONY : chat_client_qt/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_server_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_server_autogen_timestamp_deps: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_server_autogen_timestamp_deps
|
||||||
|
.PHONY : chat_server_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_server_autogen_timestamp_deps/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_server_autogen_timestamp_deps.dir/build
|
||||||
|
.PHONY : chat_server_autogen_timestamp_deps/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_server_autogen
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_server_autogen: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_server_autogen
|
||||||
|
.PHONY : chat_server_autogen
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_server_autogen/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server_autogen.dir/build.make CMakeFiles/chat_server_autogen.dir/build
|
||||||
|
.PHONY : chat_server_autogen/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_client_qt_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_client_qt_autogen_timestamp_deps: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_client_qt_autogen_timestamp_deps
|
||||||
|
.PHONY : chat_client_qt_autogen_timestamp_deps
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_client_qt_autogen_timestamp_deps/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build.make CMakeFiles/chat_client_qt_autogen_timestamp_deps.dir/build
|
||||||
|
.PHONY : chat_client_qt_autogen_timestamp_deps/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named chat_client_qt_autogen
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
chat_client_qt_autogen: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 chat_client_qt_autogen
|
||||||
|
.PHONY : chat_client_qt_autogen
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
chat_client_qt_autogen/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt_autogen.dir/build.make CMakeFiles/chat_client_qt_autogen.dir/build
|
||||||
|
.PHONY : chat_client_qt_autogen/fast
|
||||||
|
|
||||||
|
chat_client_qt_autogen/mocs_compilation.o: chat_client_qt_autogen/mocs_compilation.cpp.o
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
chat_client_qt_autogen/mocs_compilation.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.o
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.cpp.o
|
||||||
|
|
||||||
|
chat_client_qt_autogen/mocs_compilation.i: chat_client_qt_autogen/mocs_compilation.cpp.i
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
chat_client_qt_autogen/mocs_compilation.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.i
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.cpp.i
|
||||||
|
|
||||||
|
chat_client_qt_autogen/mocs_compilation.s: chat_client_qt_autogen/mocs_compilation.cpp.s
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
chat_client_qt_autogen/mocs_compilation.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/chat_client_qt_autogen/mocs_compilation.cpp.s
|
||||||
|
.PHONY : chat_client_qt_autogen/mocs_compilation.cpp.s
|
||||||
|
|
||||||
|
chat_server_autogen/mocs_compilation.o: chat_server_autogen/mocs_compilation.cpp.o
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
chat_server_autogen/mocs_compilation.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.o
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.cpp.o
|
||||||
|
|
||||||
|
chat_server_autogen/mocs_compilation.i: chat_server_autogen/mocs_compilation.cpp.i
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
chat_server_autogen/mocs_compilation.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.i
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.cpp.i
|
||||||
|
|
||||||
|
chat_server_autogen/mocs_compilation.s: chat_server_autogen/mocs_compilation.cpp.s
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
chat_server_autogen/mocs_compilation.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/chat_server_autogen/mocs_compilation.cpp.s
|
||||||
|
.PHONY : chat_server_autogen/mocs_compilation.cpp.s
|
||||||
|
|
||||||
|
src/qt_client/main.o: src/qt_client/main.cpp.o
|
||||||
|
.PHONY : src/qt_client/main.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/qt_client/main.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.o
|
||||||
|
.PHONY : src/qt_client/main.cpp.o
|
||||||
|
|
||||||
|
src/qt_client/main.i: src/qt_client/main.cpp.i
|
||||||
|
.PHONY : src/qt_client/main.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/qt_client/main.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.i
|
||||||
|
.PHONY : src/qt_client/main.cpp.i
|
||||||
|
|
||||||
|
src/qt_client/main.s: src/qt_client/main.cpp.s
|
||||||
|
.PHONY : src/qt_client/main.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/qt_client/main.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_client_qt.dir/build.make CMakeFiles/chat_client_qt.dir/src/qt_client/main.cpp.s
|
||||||
|
.PHONY : src/qt_client/main.cpp.s
|
||||||
|
|
||||||
|
src/server/server.o: src/server/server.cpp.o
|
||||||
|
.PHONY : src/server/server.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/server/server.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/src/server/server.cpp.o
|
||||||
|
.PHONY : src/server/server.cpp.o
|
||||||
|
|
||||||
|
src/server/server.i: src/server/server.cpp.i
|
||||||
|
.PHONY : src/server/server.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/server/server.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/src/server/server.cpp.i
|
||||||
|
.PHONY : src/server/server.cpp.i
|
||||||
|
|
||||||
|
src/server/server.s: src/server/server.cpp.s
|
||||||
|
.PHONY : src/server/server.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/server/server.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/chat_server.dir/build.make CMakeFiles/chat_server.dir/src/server/server.cpp.s
|
||||||
|
.PHONY : src/server/server.cpp.s
|
||||||
|
|
||||||
|
# Help Target
|
||||||
|
help:
|
||||||
|
@echo "The following are some of the valid targets for this Makefile:"
|
||||||
|
@echo "... all (the default if no target is provided)"
|
||||||
|
@echo "... clean"
|
||||||
|
@echo "... depend"
|
||||||
|
@echo "... edit_cache"
|
||||||
|
@echo "... install"
|
||||||
|
@echo "... install/local"
|
||||||
|
@echo "... install/strip"
|
||||||
|
@echo "... list_install_components"
|
||||||
|
@echo "... rebuild_cache"
|
||||||
|
@echo "... chat_client_qt_autogen"
|
||||||
|
@echo "... chat_client_qt_autogen_timestamp_deps"
|
||||||
|
@echo "... chat_server_autogen"
|
||||||
|
@echo "... chat_server_autogen_timestamp_deps"
|
||||||
|
@echo "... chat_client_qt"
|
||||||
|
@echo "... chat_server"
|
||||||
|
@echo "... chat_client_qt_autogen/mocs_compilation.o"
|
||||||
|
@echo "... chat_client_qt_autogen/mocs_compilation.i"
|
||||||
|
@echo "... chat_client_qt_autogen/mocs_compilation.s"
|
||||||
|
@echo "... chat_server_autogen/mocs_compilation.o"
|
||||||
|
@echo "... chat_server_autogen/mocs_compilation.i"
|
||||||
|
@echo "... chat_server_autogen/mocs_compilation.s"
|
||||||
|
@echo "... src/qt_client/main.o"
|
||||||
|
@echo "... src/qt_client/main.i"
|
||||||
|
@echo "... src/qt_client/main.s"
|
||||||
|
@echo "... src/server/server.o"
|
||||||
|
@echo "... src/server/server.i"
|
||||||
|
@echo "... src/server/server.s"
|
||||||
|
.PHONY : help
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
BIN
build/chat_client_qt
Executable file
BIN
build/chat_client_qt
Executable file
Binary file not shown.
576
build/chat_client_qt_autogen/deps
Normal file
576
build/chat_client_qt_autogen/deps
Normal file
@ -0,0 +1,576 @@
|
|||||||
|
chat_client_qt_autogen/timestamp: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/moc_predefs.h \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp \
|
||||||
|
/usr/include/alloca.h \
|
||||||
|
/usr/include/asm-generic/bitsperlong.h \
|
||||||
|
/usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/asm-generic/errno.h \
|
||||||
|
/usr/include/asm-generic/int-ll64.h \
|
||||||
|
/usr/include/asm-generic/posix_types.h \
|
||||||
|
/usr/include/asm-generic/types.h \
|
||||||
|
/usr/include/asm/bitsperlong.h \
|
||||||
|
/usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm/posix_types.h \
|
||||||
|
/usr/include/asm/posix_types_64.h \
|
||||||
|
/usr/include/asm/types.h \
|
||||||
|
/usr/include/asm/unistd.h \
|
||||||
|
/usr/include/asm/unistd_64.h \
|
||||||
|
/usr/include/assert.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h \
|
||||||
|
/usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/confname.h \
|
||||||
|
/usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h \
|
||||||
|
/usr/include/bits/environments.h \
|
||||||
|
/usr/include/bits/errno.h \
|
||||||
|
/usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/getopt_core.h \
|
||||||
|
/usr/include/bits/getopt_posix.h \
|
||||||
|
/usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/local_lim.h \
|
||||||
|
/usr/include/bits/locale.h \
|
||||||
|
/usr/include/bits/long-double.h \
|
||||||
|
/usr/include/bits/posix1_lim.h \
|
||||||
|
/usr/include/bits/posix2_lim.h \
|
||||||
|
/usr/include/bits/posix_opt.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h \
|
||||||
|
/usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/bits/stdio_lim.h \
|
||||||
|
/usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h \
|
||||||
|
/usr/include/bits/syscall.h \
|
||||||
|
/usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/time.h \
|
||||||
|
/usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/timesize.h \
|
||||||
|
/usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/types/FILE.h \
|
||||||
|
/usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/bits/uio_lim.h \
|
||||||
|
/usr/include/bits/unistd_ext.h \
|
||||||
|
/usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/xopen_lim.h \
|
||||||
|
/usr/include/ctype.h \
|
||||||
|
/usr/include/endian.h \
|
||||||
|
/usr/include/errno.h \
|
||||||
|
/usr/include/features-time64.h \
|
||||||
|
/usr/include/features.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/limits.h \
|
||||||
|
/usr/include/linux/errno.h \
|
||||||
|
/usr/include/linux/limits.h \
|
||||||
|
/usr/include/linux/posix_types.h \
|
||||||
|
/usr/include/linux/stddef.h \
|
||||||
|
/usr/include/linux/types.h \
|
||||||
|
/usr/include/locale.h \
|
||||||
|
/usr/include/pthread.h \
|
||||||
|
/usr/include/qt5/Gentoo/gentoo-qconfig.h \
|
||||||
|
/usr/include/qt5/QtCore/QFlags \
|
||||||
|
/usr/include/qt5/QtCore/QThread \
|
||||||
|
/usr/include/qt5/QtCore/qalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qarraydata.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic_cxx11.h \
|
||||||
|
/usr/include/qt5/QtCore/qbasicatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qbytearray.h \
|
||||||
|
/usr/include/qt5/QtCore/qbytearraylist.h \
|
||||||
|
/usr/include/qt5/QtCore/qchar.h \
|
||||||
|
/usr/include/qt5/QtCore/qcompilerdetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qconfig.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainerfwd.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainertools_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontiguouscache.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreapplication.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreevent.h \
|
||||||
|
/usr/include/qt5/QtCore/qcryptographichash.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatastream.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatetime.h \
|
||||||
|
/usr/include/qt5/QtCore/qdeadlinetimer.h \
|
||||||
|
/usr/include/qt5/QtCore/qdebug.h \
|
||||||
|
/usr/include/qt5/QtCore/qelapsedtimer.h \
|
||||||
|
/usr/include/qt5/QtCore/qeventloop.h \
|
||||||
|
/usr/include/qt5/QtCore/qflags.h \
|
||||||
|
/usr/include/qt5/QtCore/qgenericatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qglobal.h \
|
||||||
|
/usr/include/qt5/QtCore/qglobalstatic.h \
|
||||||
|
/usr/include/qt5/QtCore/qhash.h \
|
||||||
|
/usr/include/qt5/QtCore/qhashfunctions.h \
|
||||||
|
/usr/include/qt5/QtCore/qiodevice.h \
|
||||||
|
/usr/include/qt5/QtCore/qiterator.h \
|
||||||
|
/usr/include/qt5/QtCore/qline.h \
|
||||||
|
/usr/include/qt5/QtCore/qlist.h \
|
||||||
|
/usr/include/qt5/QtCore/qlocale.h \
|
||||||
|
/usr/include/qt5/QtCore/qlogging.h \
|
||||||
|
/usr/include/qt5/QtCore/qmap.h \
|
||||||
|
/usr/include/qt5/QtCore/qmargins.h \
|
||||||
|
/usr/include/qt5/QtCore/qmetatype.h \
|
||||||
|
/usr/include/qt5/QtCore/qnamespace.h \
|
||||||
|
/usr/include/qt5/QtCore/qnumeric.h \
|
||||||
|
/usr/include/qt5/QtCore/qobject.h \
|
||||||
|
/usr/include/qt5/QtCore/qobject_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qpair.h \
|
||||||
|
/usr/include/qt5/QtCore/qpoint.h \
|
||||||
|
/usr/include/qt5/QtCore/qprocessordetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qrect.h \
|
||||||
|
/usr/include/qt5/QtCore/qrefcount.h \
|
||||||
|
/usr/include/qt5/QtCore/qregexp.h \
|
||||||
|
/usr/include/qt5/QtCore/qregularexpression.h \
|
||||||
|
/usr/include/qt5/QtCore/qscopedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qset.h \
|
||||||
|
/usr/include/qt5/QtCore/qshareddata.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qsize.h \
|
||||||
|
/usr/include/qt5/QtCore/qstring.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringlist.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringliteral.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringmatcher.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringview.h \
|
||||||
|
/usr/include/qt5/QtCore/qsysinfo.h \
|
||||||
|
/usr/include/qt5/QtCore/qsystemdetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qtcore-config.h \
|
||||||
|
/usr/include/qt5/QtCore/qtextstream.h \
|
||||||
|
/usr/include/qt5/QtCore/qthread.h \
|
||||||
|
/usr/include/qt5/QtCore/qtypeinfo.h \
|
||||||
|
/usr/include/qt5/QtCore/qurl.h \
|
||||||
|
/usr/include/qt5/QtCore/qvariant.h \
|
||||||
|
/usr/include/qt5/QtCore/qvarlengtharray.h \
|
||||||
|
/usr/include/qt5/QtCore/qvector.h \
|
||||||
|
/usr/include/qt5/QtCore/qversiontagging.h \
|
||||||
|
/usr/include/qt5/QtGui/qbrush.h \
|
||||||
|
/usr/include/qt5/QtGui/qcolor.h \
|
||||||
|
/usr/include/qt5/QtGui/qcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qfont.h \
|
||||||
|
/usr/include/qt5/QtGui/qfontinfo.h \
|
||||||
|
/usr/include/qt5/QtGui/qfontmetrics.h \
|
||||||
|
/usr/include/qt5/QtGui/qguiapplication.h \
|
||||||
|
/usr/include/qt5/QtGui/qicon.h \
|
||||||
|
/usr/include/qt5/QtGui/qimage.h \
|
||||||
|
/usr/include/qt5/QtGui/qinputmethod.h \
|
||||||
|
/usr/include/qt5/QtGui/qkeysequence.h \
|
||||||
|
/usr/include/qt5/QtGui/qmatrix.h \
|
||||||
|
/usr/include/qt5/QtGui/qpaintdevice.h \
|
||||||
|
/usr/include/qt5/QtGui/qpalette.h \
|
||||||
|
/usr/include/qt5/QtGui/qpen.h \
|
||||||
|
/usr/include/qt5/QtGui/qpixelformat.h \
|
||||||
|
/usr/include/qt5/QtGui/qpixmap.h \
|
||||||
|
/usr/include/qt5/QtGui/qpolygon.h \
|
||||||
|
/usr/include/qt5/QtGui/qregion.h \
|
||||||
|
/usr/include/qt5/QtGui/qrgb.h \
|
||||||
|
/usr/include/qt5/QtGui/qrgba64.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextdocument.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextformat.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextoption.h \
|
||||||
|
/usr/include/qt5/QtGui/qtgui-config.h \
|
||||||
|
/usr/include/qt5/QtGui/qtguiglobal.h \
|
||||||
|
/usr/include/qt5/QtGui/qtransform.h \
|
||||||
|
/usr/include/qt5/QtGui/qvalidator.h \
|
||||||
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
||||||
|
/usr/include/qt5/QtNetwork/QHostAddress \
|
||||||
|
/usr/include/qt5/QtNetwork/QSslSocket \
|
||||||
|
/usr/include/qt5/QtNetwork/qabstractsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qhostaddress.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qssl.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslcertificate.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslerror.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtcpsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetwork-config.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetworkglobal.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QApplication \
|
||||||
|
/usr/include/qt5/QtWidgets/QColorDialog \
|
||||||
|
/usr/include/qt5/QtWidgets/QHBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/QLabel \
|
||||||
|
/usr/include/qt5/QtWidgets/QLineEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
||||||
|
/usr/include/qt5/QtWidgets/QMessageBox \
|
||||||
|
/usr/include/qt5/QtWidgets/QPushButton \
|
||||||
|
/usr/include/qt5/QtWidgets/QSlider \
|
||||||
|
/usr/include/qt5/QtWidgets/QSpinBox \
|
||||||
|
/usr/include/qt5/QtWidgets/QTextEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/QVBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/QWidget \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractscrollarea.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractspinbox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qapplication.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qboxlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qcolordialog.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qdialog.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qframe.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qgridlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlabel.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayoutitem.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlineedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qmessagebox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qpushbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qsizepolicy.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qspinbox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtabwidget.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtextedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgets-config.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgetsglobal.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
||||||
|
/usr/include/sched.h \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/sys/select.h \
|
||||||
|
/usr/include/sys/syscall.h \
|
||||||
|
/usr/include/sys/types.h \
|
||||||
|
/usr/include/syscall.h \
|
||||||
|
/usr/include/time.h \
|
||||||
|
/usr/include/unistd.h \
|
||||||
|
/usr/include/wchar.h \
|
||||||
|
/usr/include/wctype.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/array \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/atomic \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_wait.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/c++0x_warning.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/erase_if.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/formatfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/iterator_concepts.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/list.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/max_size_type.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/mofunc_impl.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/monostate.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move_only_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/node_handle.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/out_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_cmp.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_util.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/sat_arith.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_list.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_map.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_multimap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_numeric.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_relops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tree.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stream_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cerrno \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/charconv \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/climits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/compare \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/format \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/functional \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/future \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iterator \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numbers \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numeric \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/optional \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_numeric_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/text_encoding \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/unordered_map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/utility \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake \
|
||||||
|
/usr/bin/cmake
|
||||||
183
build/chat_client_qt_autogen/include/main.moc
Normal file
183
build/chat_client_qt_autogen/include/main.moc
Normal file
@ -0,0 +1,183 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
** Meta object code from reading C++ file 'main.cpp'
|
||||||
|
**
|
||||||
|
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.18)
|
||||||
|
**
|
||||||
|
** WARNING! All changes made in this file will be lost!
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <QtCore/qbytearray.h>
|
||||||
|
#include <QtCore/qmetatype.h>
|
||||||
|
#include <QtCore/QList>
|
||||||
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
|
#error "The header file 'main.cpp' doesn't include <QObject>."
|
||||||
|
#elif Q_MOC_OUTPUT_REVISION != 67
|
||||||
|
#error "This file was generated using the moc from 5.15.18. It"
|
||||||
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
|
#error "(The moc has changed too much.)"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
struct qt_meta_stringdata_ChatClient_t {
|
||||||
|
QByteArrayData data[17];
|
||||||
|
char stringdata0[242];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(idx, ofs, len) \
|
||||||
|
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
||||||
|
qptrdiff(offsetof(qt_meta_stringdata_ChatClient_t, stringdata0) + ofs \
|
||||||
|
- idx * sizeof(QByteArrayData)) \
|
||||||
|
)
|
||||||
|
static const qt_meta_stringdata_ChatClient_t qt_meta_stringdata_ChatClient = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 0, 10), // "ChatClient"
|
||||||
|
QT_MOC_LITERAL(1, 11, 10), // "on_connect"
|
||||||
|
QT_MOC_LITERAL(2, 22, 0), // ""
|
||||||
|
QT_MOC_LITERAL(3, 23, 19), // "on_socket_connected"
|
||||||
|
QT_MOC_LITERAL(4, 43, 22), // "on_socket_disconnected"
|
||||||
|
QT_MOC_LITERAL(5, 66, 14), // "on_socket_read"
|
||||||
|
QT_MOC_LITERAL(6, 81, 15), // "on_socket_error"
|
||||||
|
QT_MOC_LITERAL(7, 97, 28), // "QAbstractSocket::SocketError"
|
||||||
|
QT_MOC_LITERAL(8, 126, 5), // "error"
|
||||||
|
QT_MOC_LITERAL(9, 132, 13), // "on_ssl_errors"
|
||||||
|
QT_MOC_LITERAL(10, 146, 16), // "QList<QSslError>"
|
||||||
|
QT_MOC_LITERAL(11, 163, 6), // "errors"
|
||||||
|
QT_MOC_LITERAL(12, 170, 15), // "on_send_message"
|
||||||
|
QT_MOC_LITERAL(13, 186, 11), // "on_bg_color"
|
||||||
|
QT_MOC_LITERAL(14, 198, 13), // "on_text_color"
|
||||||
|
QT_MOC_LITERAL(15, 212, 23), // "on_transparency_changed"
|
||||||
|
QT_MOC_LITERAL(16, 236, 5) // "value"
|
||||||
|
|
||||||
|
},
|
||||||
|
"ChatClient\0on_connect\0\0on_socket_connected\0"
|
||||||
|
"on_socket_disconnected\0on_socket_read\0"
|
||||||
|
"on_socket_error\0QAbstractSocket::SocketError\0"
|
||||||
|
"error\0on_ssl_errors\0QList<QSslError>\0"
|
||||||
|
"errors\0on_send_message\0on_bg_color\0"
|
||||||
|
"on_text_color\0on_transparency_changed\0"
|
||||||
|
"value"
|
||||||
|
};
|
||||||
|
#undef QT_MOC_LITERAL
|
||||||
|
|
||||||
|
static const uint qt_meta_data_ChatClient[] = {
|
||||||
|
|
||||||
|
// content:
|
||||||
|
8, // revision
|
||||||
|
0, // classname
|
||||||
|
0, 0, // classinfo
|
||||||
|
10, 14, // methods
|
||||||
|
0, 0, // properties
|
||||||
|
0, 0, // enums/sets
|
||||||
|
0, 0, // constructors
|
||||||
|
0, // flags
|
||||||
|
0, // signalCount
|
||||||
|
|
||||||
|
// slots: name, argc, parameters, tag, flags
|
||||||
|
1, 0, 64, 2, 0x08 /* Private */,
|
||||||
|
3, 0, 65, 2, 0x08 /* Private */,
|
||||||
|
4, 0, 66, 2, 0x08 /* Private */,
|
||||||
|
5, 0, 67, 2, 0x08 /* Private */,
|
||||||
|
6, 1, 68, 2, 0x08 /* Private */,
|
||||||
|
9, 1, 71, 2, 0x08 /* Private */,
|
||||||
|
12, 0, 74, 2, 0x08 /* Private */,
|
||||||
|
13, 0, 75, 2, 0x08 /* Private */,
|
||||||
|
14, 0, 76, 2, 0x08 /* Private */,
|
||||||
|
15, 1, 77, 2, 0x08 /* Private */,
|
||||||
|
|
||||||
|
// slots: parameters
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void, 0x80000000 | 7, 8,
|
||||||
|
QMetaType::Void, 0x80000000 | 10, 11,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void,
|
||||||
|
QMetaType::Void, QMetaType::Int, 16,
|
||||||
|
|
||||||
|
0 // eod
|
||||||
|
};
|
||||||
|
|
||||||
|
void ChatClient::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
|
auto *_t = static_cast<ChatClient *>(_o);
|
||||||
|
(void)_t;
|
||||||
|
switch (_id) {
|
||||||
|
case 0: _t->on_connect(); break;
|
||||||
|
case 1: _t->on_socket_connected(); break;
|
||||||
|
case 2: _t->on_socket_disconnected(); break;
|
||||||
|
case 3: _t->on_socket_read(); break;
|
||||||
|
case 4: _t->on_socket_error((*reinterpret_cast< QAbstractSocket::SocketError(*)>(_a[1]))); break;
|
||||||
|
case 5: _t->on_ssl_errors((*reinterpret_cast< const QList<QSslError>(*)>(_a[1]))); break;
|
||||||
|
case 6: _t->on_send_message(); break;
|
||||||
|
case 7: _t->on_bg_color(); break;
|
||||||
|
case 8: _t->on_text_color(); break;
|
||||||
|
case 9: _t->on_transparency_changed((*reinterpret_cast< int(*)>(_a[1]))); break;
|
||||||
|
default: ;
|
||||||
|
}
|
||||||
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
|
switch (_id) {
|
||||||
|
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
||||||
|
case 4:
|
||||||
|
switch (*reinterpret_cast<int*>(_a[1])) {
|
||||||
|
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
||||||
|
case 0:
|
||||||
|
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QAbstractSocket::SocketError >(); break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
switch (*reinterpret_cast<int*>(_a[1])) {
|
||||||
|
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
||||||
|
case 0:
|
||||||
|
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QList<QSslError> >(); break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QT_INIT_METAOBJECT const QMetaObject ChatClient::staticMetaObject = { {
|
||||||
|
QMetaObject::SuperData::link<QMainWindow::staticMetaObject>(),
|
||||||
|
qt_meta_stringdata_ChatClient.data,
|
||||||
|
qt_meta_data_ChatClient,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
|
|
||||||
|
const QMetaObject *ChatClient::metaObject() const
|
||||||
|
{
|
||||||
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
void *ChatClient::qt_metacast(const char *_clname)
|
||||||
|
{
|
||||||
|
if (!_clname) return nullptr;
|
||||||
|
if (!strcmp(_clname, qt_meta_stringdata_ChatClient.stringdata0))
|
||||||
|
return static_cast<void*>(this);
|
||||||
|
return QMainWindow::qt_metacast(_clname);
|
||||||
|
}
|
||||||
|
|
||||||
|
int ChatClient::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
_id = QMainWindow::qt_metacall(_c, _id, _a);
|
||||||
|
if (_id < 0)
|
||||||
|
return _id;
|
||||||
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
|
if (_id < 10)
|
||||||
|
qt_static_metacall(this, _c, _id, _a);
|
||||||
|
_id -= 10;
|
||||||
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
|
if (_id < 10)
|
||||||
|
qt_static_metacall(this, _c, _id, _a);
|
||||||
|
_id -= 10;
|
||||||
|
}
|
||||||
|
return _id;
|
||||||
|
}
|
||||||
|
QT_WARNING_POP
|
||||||
|
QT_END_MOC_NAMESPACE
|
||||||
447
build/chat_client_qt_autogen/include/main.moc.d
Normal file
447
build/chat_client_qt_autogen/include/main.moc.d
Normal file
@ -0,0 +1,447 @@
|
|||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/include/main.moc: /home/ganome/Projects/SCAR-719/repos/scar-chat/src/qt_client/main.cpp \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt_autogen/moc_predefs.h \
|
||||||
|
/usr/include/alloca.h \
|
||||||
|
/usr/include/asm-generic/bitsperlong.h \
|
||||||
|
/usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/asm-generic/errno.h \
|
||||||
|
/usr/include/asm-generic/int-ll64.h \
|
||||||
|
/usr/include/asm-generic/posix_types.h \
|
||||||
|
/usr/include/asm-generic/types.h \
|
||||||
|
/usr/include/asm/bitsperlong.h \
|
||||||
|
/usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm/posix_types.h \
|
||||||
|
/usr/include/asm/posix_types_64.h \
|
||||||
|
/usr/include/asm/types.h \
|
||||||
|
/usr/include/asm/unistd.h \
|
||||||
|
/usr/include/asm/unistd_64.h \
|
||||||
|
/usr/include/assert.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h \
|
||||||
|
/usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/confname.h \
|
||||||
|
/usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h \
|
||||||
|
/usr/include/bits/environments.h \
|
||||||
|
/usr/include/bits/errno.h \
|
||||||
|
/usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/getopt_core.h \
|
||||||
|
/usr/include/bits/getopt_posix.h \
|
||||||
|
/usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/local_lim.h \
|
||||||
|
/usr/include/bits/locale.h \
|
||||||
|
/usr/include/bits/long-double.h \
|
||||||
|
/usr/include/bits/posix1_lim.h \
|
||||||
|
/usr/include/bits/posix2_lim.h \
|
||||||
|
/usr/include/bits/posix_opt.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h \
|
||||||
|
/usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/bits/stdio_lim.h \
|
||||||
|
/usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h \
|
||||||
|
/usr/include/bits/syscall.h \
|
||||||
|
/usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/time.h \
|
||||||
|
/usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/timesize.h \
|
||||||
|
/usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/types/FILE.h \
|
||||||
|
/usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/bits/uio_lim.h \
|
||||||
|
/usr/include/bits/unistd_ext.h \
|
||||||
|
/usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/xopen_lim.h \
|
||||||
|
/usr/include/ctype.h \
|
||||||
|
/usr/include/endian.h \
|
||||||
|
/usr/include/errno.h \
|
||||||
|
/usr/include/features-time64.h \
|
||||||
|
/usr/include/features.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/limits.h \
|
||||||
|
/usr/include/linux/errno.h \
|
||||||
|
/usr/include/linux/limits.h \
|
||||||
|
/usr/include/linux/posix_types.h \
|
||||||
|
/usr/include/linux/stddef.h \
|
||||||
|
/usr/include/linux/types.h \
|
||||||
|
/usr/include/locale.h \
|
||||||
|
/usr/include/pthread.h \
|
||||||
|
/usr/include/qt5/Gentoo/gentoo-qconfig.h \
|
||||||
|
/usr/include/qt5/QtCore/QFlags \
|
||||||
|
/usr/include/qt5/QtCore/QThread \
|
||||||
|
/usr/include/qt5/QtCore/qalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qarraydata.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qatomic_cxx11.h \
|
||||||
|
/usr/include/qt5/QtCore/qbasicatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qbytearray.h \
|
||||||
|
/usr/include/qt5/QtCore/qbytearraylist.h \
|
||||||
|
/usr/include/qt5/QtCore/qchar.h \
|
||||||
|
/usr/include/qt5/QtCore/qcompilerdetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qconfig.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainerfwd.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontainertools_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qcontiguouscache.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreapplication.h \
|
||||||
|
/usr/include/qt5/QtCore/qcoreevent.h \
|
||||||
|
/usr/include/qt5/QtCore/qcryptographichash.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatastream.h \
|
||||||
|
/usr/include/qt5/QtCore/qdatetime.h \
|
||||||
|
/usr/include/qt5/QtCore/qdeadlinetimer.h \
|
||||||
|
/usr/include/qt5/QtCore/qdebug.h \
|
||||||
|
/usr/include/qt5/QtCore/qelapsedtimer.h \
|
||||||
|
/usr/include/qt5/QtCore/qeventloop.h \
|
||||||
|
/usr/include/qt5/QtCore/qflags.h \
|
||||||
|
/usr/include/qt5/QtCore/qgenericatomic.h \
|
||||||
|
/usr/include/qt5/QtCore/qglobal.h \
|
||||||
|
/usr/include/qt5/QtCore/qglobalstatic.h \
|
||||||
|
/usr/include/qt5/QtCore/qhash.h \
|
||||||
|
/usr/include/qt5/QtCore/qhashfunctions.h \
|
||||||
|
/usr/include/qt5/QtCore/qiodevice.h \
|
||||||
|
/usr/include/qt5/QtCore/qiterator.h \
|
||||||
|
/usr/include/qt5/QtCore/qline.h \
|
||||||
|
/usr/include/qt5/QtCore/qlist.h \
|
||||||
|
/usr/include/qt5/QtCore/qlocale.h \
|
||||||
|
/usr/include/qt5/QtCore/qlogging.h \
|
||||||
|
/usr/include/qt5/QtCore/qmap.h \
|
||||||
|
/usr/include/qt5/QtCore/qmargins.h \
|
||||||
|
/usr/include/qt5/QtCore/qmetatype.h \
|
||||||
|
/usr/include/qt5/QtCore/qnamespace.h \
|
||||||
|
/usr/include/qt5/QtCore/qnumeric.h \
|
||||||
|
/usr/include/qt5/QtCore/qobject.h \
|
||||||
|
/usr/include/qt5/QtCore/qobject_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs.h \
|
||||||
|
/usr/include/qt5/QtCore/qobjectdefs_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qpair.h \
|
||||||
|
/usr/include/qt5/QtCore/qpoint.h \
|
||||||
|
/usr/include/qt5/QtCore/qprocessordetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qrect.h \
|
||||||
|
/usr/include/qt5/QtCore/qrefcount.h \
|
||||||
|
/usr/include/qt5/QtCore/qregexp.h \
|
||||||
|
/usr/include/qt5/QtCore/qregularexpression.h \
|
||||||
|
/usr/include/qt5/QtCore/qscopedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qset.h \
|
||||||
|
/usr/include/qt5/QtCore/qshareddata.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer.h \
|
||||||
|
/usr/include/qt5/QtCore/qsharedpointer_impl.h \
|
||||||
|
/usr/include/qt5/QtCore/qsize.h \
|
||||||
|
/usr/include/qt5/QtCore/qstring.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringalgorithms.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringlist.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringliteral.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringmatcher.h \
|
||||||
|
/usr/include/qt5/QtCore/qstringview.h \
|
||||||
|
/usr/include/qt5/QtCore/qsysinfo.h \
|
||||||
|
/usr/include/qt5/QtCore/qsystemdetection.h \
|
||||||
|
/usr/include/qt5/QtCore/qtcore-config.h \
|
||||||
|
/usr/include/qt5/QtCore/qtextstream.h \
|
||||||
|
/usr/include/qt5/QtCore/qthread.h \
|
||||||
|
/usr/include/qt5/QtCore/qtypeinfo.h \
|
||||||
|
/usr/include/qt5/QtCore/qurl.h \
|
||||||
|
/usr/include/qt5/QtCore/qvariant.h \
|
||||||
|
/usr/include/qt5/QtCore/qvarlengtharray.h \
|
||||||
|
/usr/include/qt5/QtCore/qvector.h \
|
||||||
|
/usr/include/qt5/QtCore/qversiontagging.h \
|
||||||
|
/usr/include/qt5/QtGui/qbrush.h \
|
||||||
|
/usr/include/qt5/QtGui/qcolor.h \
|
||||||
|
/usr/include/qt5/QtGui/qcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qfont.h \
|
||||||
|
/usr/include/qt5/QtGui/qfontinfo.h \
|
||||||
|
/usr/include/qt5/QtGui/qfontmetrics.h \
|
||||||
|
/usr/include/qt5/QtGui/qguiapplication.h \
|
||||||
|
/usr/include/qt5/QtGui/qicon.h \
|
||||||
|
/usr/include/qt5/QtGui/qimage.h \
|
||||||
|
/usr/include/qt5/QtGui/qinputmethod.h \
|
||||||
|
/usr/include/qt5/QtGui/qkeysequence.h \
|
||||||
|
/usr/include/qt5/QtGui/qmatrix.h \
|
||||||
|
/usr/include/qt5/QtGui/qpaintdevice.h \
|
||||||
|
/usr/include/qt5/QtGui/qpalette.h \
|
||||||
|
/usr/include/qt5/QtGui/qpen.h \
|
||||||
|
/usr/include/qt5/QtGui/qpixelformat.h \
|
||||||
|
/usr/include/qt5/QtGui/qpixmap.h \
|
||||||
|
/usr/include/qt5/QtGui/qpolygon.h \
|
||||||
|
/usr/include/qt5/QtGui/qregion.h \
|
||||||
|
/usr/include/qt5/QtGui/qrgb.h \
|
||||||
|
/usr/include/qt5/QtGui/qrgba64.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextcursor.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextdocument.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextformat.h \
|
||||||
|
/usr/include/qt5/QtGui/qtextoption.h \
|
||||||
|
/usr/include/qt5/QtGui/qtgui-config.h \
|
||||||
|
/usr/include/qt5/QtGui/qtguiglobal.h \
|
||||||
|
/usr/include/qt5/QtGui/qtransform.h \
|
||||||
|
/usr/include/qt5/QtGui/qvalidator.h \
|
||||||
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
||||||
|
/usr/include/qt5/QtNetwork/QHostAddress \
|
||||||
|
/usr/include/qt5/QtNetwork/QSslSocket \
|
||||||
|
/usr/include/qt5/QtNetwork/qabstractsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qhostaddress.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qssl.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslcertificate.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslerror.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qsslsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtcpsocket.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetwork-config.h \
|
||||||
|
/usr/include/qt5/QtNetwork/qtnetworkglobal.h \
|
||||||
|
/usr/include/qt5/QtWidgets/QApplication \
|
||||||
|
/usr/include/qt5/QtWidgets/QColorDialog \
|
||||||
|
/usr/include/qt5/QtWidgets/QHBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/QLabel \
|
||||||
|
/usr/include/qt5/QtWidgets/QLineEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
||||||
|
/usr/include/qt5/QtWidgets/QMessageBox \
|
||||||
|
/usr/include/qt5/QtWidgets/QPushButton \
|
||||||
|
/usr/include/qt5/QtWidgets/QSlider \
|
||||||
|
/usr/include/qt5/QtWidgets/QSpinBox \
|
||||||
|
/usr/include/qt5/QtWidgets/QTextEdit \
|
||||||
|
/usr/include/qt5/QtWidgets/QVBoxLayout \
|
||||||
|
/usr/include/qt5/QtWidgets/QWidget \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractscrollarea.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qabstractspinbox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qapplication.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qboxlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qcolordialog.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qdialog.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qframe.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qgridlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlabel.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayout.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlayoutitem.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qlineedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qmessagebox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qpushbutton.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qsizepolicy.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qslider.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qspinbox.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtabwidget.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtextedit.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgets-config.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qtwidgetsglobal.h \
|
||||||
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
||||||
|
/usr/include/sched.h \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/sys/select.h \
|
||||||
|
/usr/include/sys/syscall.h \
|
||||||
|
/usr/include/sys/types.h \
|
||||||
|
/usr/include/syscall.h \
|
||||||
|
/usr/include/time.h \
|
||||||
|
/usr/include/unistd.h \
|
||||||
|
/usr/include/wchar.h \
|
||||||
|
/usr/include/wctype.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/algorithm \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/array \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/atomic \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/auto_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/backward/binders.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bit \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/algorithmfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/align.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocated_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_lockfree_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/atomic_wait.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_ios.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/basic_string.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/c++0x_warning.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/char_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/charconv.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/concept_check.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cpp_type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_forced.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/erase_if.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/exception_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/formatfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functexcept.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/functional_hash.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/hash_bytes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/invoke.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ios_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/istream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/iterator_concepts.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/list.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_classes.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/locale_facets.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/localefwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/max_size_type.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memory_resource.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/memoryfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/mofunc_impl.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/monostate.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/move_only_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/nested_exception.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/new_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/node_handle.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ostream_insert.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/out_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/postypes.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/predefined_ops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ptr_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/range_access.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_cmp.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/ranges_util.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/refwrap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/requires_hosted.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/sat_arith.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_atomic.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/shared_ptr_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_abs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/std_mutex.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algo.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_algobase.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_bvector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_construct.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_function.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_heap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_list.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_map.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_multimap.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_numeric.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_pair.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_raw_storage_iter.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_relops.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tempbuf.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_tree.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_uninitialized.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stl_vector.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stream_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/streambuf_iterator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/string_view.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/stringfwd.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uniform_int_dist.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/unique_ptr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/uses_allocator_args.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/utility.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/vector.tcc \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/bits/version.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cctype \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cerrno \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/charconv \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/climits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/clocale \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/compare \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/concepts \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstddef \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cstdlib \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwchar \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/cwctype \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/assertions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/debug/debug.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/exception \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/aligned_buffer.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/alloc_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/atomicity.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/concurrence.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/numeric_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/string_conversions.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ext/type_traits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/format \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/functional \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/future \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/initializer_list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ios \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iosfwd \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/istream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/iterator \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/limits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/list \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/memory \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/new \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numbers \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/numeric \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/optional \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/ostream \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/execution_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/pstl/glue_numeric_defs.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/stdexcept \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/streambuf \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/string_view \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/text_encoding \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/tuple \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/type_traits \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/typeinfo \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/unordered_map \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/utility \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/vector \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/g++-v15/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stdarg.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/15/include/stddef.h
|
||||||
482
build/chat_client_qt_autogen/moc_predefs.h
Normal file
482
build/chat_client_qt_autogen/moc_predefs.h
Normal file
@ -0,0 +1,482 @@
|
|||||||
|
#define __DBL_MIN_EXP__ (-1021)
|
||||||
|
#define __LDBL_MANT_DIG__ 64
|
||||||
|
#define __cpp_nontype_template_parameter_auto 201606L
|
||||||
|
#define __UINT_LEAST16_MAX__ 0xffff
|
||||||
|
#define __FLT16_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ATOMIC_ACQUIRE 2
|
||||||
|
#define __FLT128_MAX_10_EXP__ 4932
|
||||||
|
#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F
|
||||||
|
#define __GCC_IEC_559_COMPLEX 2
|
||||||
|
#define __cpp_aggregate_nsdmi 201304L
|
||||||
|
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||||
|
#define __SIZEOF_FLOAT80__ 16
|
||||||
|
#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16
|
||||||
|
#define __INTMAX_C(c) c ## L
|
||||||
|
#define __CHAR_BIT__ 8
|
||||||
|
#define __UINT8_MAX__ 0xff
|
||||||
|
#define __SCHAR_WIDTH__ 8
|
||||||
|
#define __WINT_MAX__ 0xffffffffU
|
||||||
|
#define __FLT32_MIN_EXP__ (-125)
|
||||||
|
#define __cpp_static_assert 201411L
|
||||||
|
#define __BFLT16_MIN_10_EXP__ (-37)
|
||||||
|
#define __cpp_inheriting_constructors 201511L
|
||||||
|
#define QT_GUI_LIB 1
|
||||||
|
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||||
|
#define __WCHAR_MAX__ 0x7fffffff
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
|
||||||
|
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
|
||||||
|
#define __GCC_IEC_559 2
|
||||||
|
#define __FLT32X_DECIMAL_DIG__ 17
|
||||||
|
#define __FLT_EVAL_METHOD__ 0
|
||||||
|
#define __cpp_binary_literals 201304L
|
||||||
|
#define __FLT64_DECIMAL_DIG__ 17
|
||||||
|
#define __CET__ 3
|
||||||
|
#define __cpp_noexcept_function_type 201510L
|
||||||
|
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||||
|
#define __cpp_variadic_templates 200704L
|
||||||
|
#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __SIG_ATOMIC_TYPE__ int
|
||||||
|
#define __DBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __FINITE_MATH_ONLY__ 0
|
||||||
|
#define __cpp_variable_templates 201304L
|
||||||
|
#define __FLT32X_MAX_EXP__ 1024
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
|
||||||
|
#define __FLT32_HAS_DENORM__ 1
|
||||||
|
#define __UINT_FAST8_MAX__ 0xff
|
||||||
|
#define __cpp_rvalue_reference 200610L
|
||||||
|
#define __cpp_nested_namespace_definitions 201411L
|
||||||
|
#define __DEC64_MAX_EXP__ 385
|
||||||
|
#define __INT8_C(c) c
|
||||||
|
#define __LDBL_HAS_INFINITY__ 1
|
||||||
|
#define __INT_LEAST8_WIDTH__ 8
|
||||||
|
#define __cpp_variadic_using 201611L
|
||||||
|
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __INT_LEAST8_MAX__ 0x7f
|
||||||
|
#define __cpp_attributes 200809L
|
||||||
|
#define __cpp_capture_star_this 201603L
|
||||||
|
#define __SHRT_MAX__ 0x7fff
|
||||||
|
#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||||
|
#define __FLT64X_MAX_10_EXP__ 4932
|
||||||
|
#define __cpp_if_constexpr 201606L
|
||||||
|
#define __BFLT16_MAX_10_EXP__ 38
|
||||||
|
#define __BFLT16_MAX_EXP__ 128
|
||||||
|
#define __LDBL_IS_IEC_60559__ 1
|
||||||
|
#define QT_NO_DEBUG 1
|
||||||
|
#define __FLT64X_HAS_QUIET_NAN__ 1
|
||||||
|
#define __UINT_LEAST8_MAX__ 0xff
|
||||||
|
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
|
||||||
|
#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128
|
||||||
|
#define __UINTMAX_TYPE__ long unsigned int
|
||||||
|
#define __cpp_nsdmi 200809L
|
||||||
|
#define __BFLT16_DECIMAL_DIG__ 4
|
||||||
|
#define __linux 1
|
||||||
|
#define __DEC32_EPSILON__ 1E-6DF
|
||||||
|
#define __FLT_EVAL_METHOD_TS_18661_3__ 0
|
||||||
|
#define __UINT32_MAX__ 0xffffffffU
|
||||||
|
#define __GXX_EXPERIMENTAL_CXX0X__ 1
|
||||||
|
#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L)
|
||||||
|
#define __FLT128_MIN_EXP__ (-16381)
|
||||||
|
#define __DEC64X_MAX_EXP__ 6145
|
||||||
|
#define __WINT_MIN__ 0U
|
||||||
|
#define __FLT128_MIN_10_EXP__ (-4931)
|
||||||
|
#define __FLT32X_IS_IEC_60559__ 1
|
||||||
|
#define __INT_LEAST16_WIDTH__ 16
|
||||||
|
#define __SCHAR_MAX__ 0x7f
|
||||||
|
#define __FLT128_MANT_DIG__ 113
|
||||||
|
#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
|
||||||
|
#define __INT64_C(c) c ## L
|
||||||
|
#define __SSP_STRONG__ 3
|
||||||
|
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
|
||||||
|
#define __ATOMIC_SEQ_CST 5
|
||||||
|
#define __unix 1
|
||||||
|
#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __FLT32X_MANT_DIG__ 53
|
||||||
|
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||||
|
#define __cpp_aligned_new 201606L
|
||||||
|
#define __FLT32_MAX_10_EXP__ 38
|
||||||
|
#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x
|
||||||
|
#define __STDC_HOSTED__ 1
|
||||||
|
#define __DEC64_MIN_EXP__ (-382)
|
||||||
|
#define __cpp_decltype_auto 201304L
|
||||||
|
#define __DBL_DIG__ 15
|
||||||
|
#define __STDC_EMBED_EMPTY__ 2
|
||||||
|
#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F
|
||||||
|
#define __GXX_WEAK__ 1
|
||||||
|
#define __SHRT_WIDTH__ 16
|
||||||
|
#define __FLT32_IS_IEC_60559__ 1
|
||||||
|
#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L
|
||||||
|
#define __DBL_IS_IEC_60559__ 1
|
||||||
|
#define __DEC32_MAX__ 9.999999E96DF
|
||||||
|
#define __cpp_threadsafe_static_init 200806L
|
||||||
|
#define __cpp_enumerator_attributes 201411L
|
||||||
|
#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x
|
||||||
|
#define __FLT32X_HAS_INFINITY__ 1
|
||||||
|
#define __unix__ 1
|
||||||
|
#define __INT_WIDTH__ 32
|
||||||
|
#define __STDC_IEC_559__ 1
|
||||||
|
#define __STDC_ISO_10646__ 201706L
|
||||||
|
#define __DECIMAL_DIG__ 21
|
||||||
|
#define __STDC_IEC_559_COMPLEX__ 1
|
||||||
|
#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64
|
||||||
|
#define __gnu_linux__ 1
|
||||||
|
#define __INT16_MAX__ 0x7fff
|
||||||
|
#define __FLT64_MIN_EXP__ (-1021)
|
||||||
|
#define __DEC64X_EPSILON__ 1E-33D64x
|
||||||
|
#define __FLT64X_MIN_10_EXP__ (-4931)
|
||||||
|
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT16_MIN_EXP__ (-13)
|
||||||
|
#define __FLT64_MANT_DIG__ 53
|
||||||
|
#define __FLT64X_MANT_DIG__ 64
|
||||||
|
#define __BFLT16_DIG__ 2
|
||||||
|
#define __GNUC__ 15
|
||||||
|
#define __GXX_RTTI 1
|
||||||
|
#define __pie__ 2
|
||||||
|
#define __MMX__ 1
|
||||||
|
#define __FLT_HAS_DENORM__ 1
|
||||||
|
#define __SIZEOF_LONG_DOUBLE__ 16
|
||||||
|
#define __BIGGEST_ALIGNMENT__ 16
|
||||||
|
#define __STDC_UTF_16__ 1
|
||||||
|
#define __FLT64_MAX_10_EXP__ 308
|
||||||
|
#define __BFLT16_IS_IEC_60559__ 0
|
||||||
|
#define __FLT16_MAX_10_EXP__ 4
|
||||||
|
#define __cpp_delegating_constructors 200604L
|
||||||
|
#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||||
|
#define __cpp_raw_strings 200710L
|
||||||
|
#define __INT_FAST32_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __DBL_HAS_INFINITY__ 1
|
||||||
|
#define __INT64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __SIZEOF_FLOAT__ 4
|
||||||
|
#define __HAVE_SPECULATION_SAFE_VALUE 1
|
||||||
|
#define __cpp_fold_expressions 201603L
|
||||||
|
#define __DEC32_MIN_EXP__ (-94)
|
||||||
|
#define __INTPTR_WIDTH__ 64
|
||||||
|
#define __UINT_LEAST32_MAX__ 0xffffffffU
|
||||||
|
#define __FLT32X_HAS_DENORM__ 1
|
||||||
|
#define __INT_FAST16_TYPE__ long int
|
||||||
|
#define __MMX_WITH_SSE__ 1
|
||||||
|
#define __LDBL_HAS_DENORM__ 1
|
||||||
|
#define QT_WIDGETS_LIB 1
|
||||||
|
#define __SEG_GS 1
|
||||||
|
#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16
|
||||||
|
#define __cplusplus 201703L
|
||||||
|
#define __cpp_ref_qualifiers 200710L
|
||||||
|
#define __DEC32_MIN__ 1E-95DF
|
||||||
|
#define __DEPRECATED 1
|
||||||
|
#define __cpp_rvalue_references 200610L
|
||||||
|
#define __DBL_MAX_EXP__ 1024
|
||||||
|
#define __WCHAR_WIDTH__ 32
|
||||||
|
#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||||
|
#define __DEC128_EPSILON__ 1E-33DL
|
||||||
|
#define __FLT16_DECIMAL_DIG__ 5
|
||||||
|
#define __SSE2_MATH__ 1
|
||||||
|
#define __ATOMIC_HLE_RELEASE 131072
|
||||||
|
#define __PTRDIFF_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __amd64 1
|
||||||
|
#define __DEC64X_MAX__ 9.999999999999999999999999999999999E6144D64x
|
||||||
|
#define __ATOMIC_HLE_ACQUIRE 65536
|
||||||
|
#define __GNUG__ 15
|
||||||
|
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
|
||||||
|
#define __SIZEOF_SIZE_T__ 8
|
||||||
|
#define __BFLT16_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MIN_EXP__ (-16381)
|
||||||
|
#define __SIZEOF_WINT_T__ 4
|
||||||
|
#define __FLT32X_DIG__ 15
|
||||||
|
#define __LONG_LONG_WIDTH__ 64
|
||||||
|
#define __cpp_initializer_lists 200806L
|
||||||
|
#define __FLT32_MAX_EXP__ 128
|
||||||
|
#define ABI_ID "ELF"
|
||||||
|
#define __cpp_hex_float 201603L
|
||||||
|
#define __GXX_ABI_VERSION 1020
|
||||||
|
#define __FLT_MIN_EXP__ (-125)
|
||||||
|
#define __GCC_HAVE_DWARF2_CFI_ASM 1
|
||||||
|
#define __x86_64 1
|
||||||
|
#define __cpp_lambdas 200907L
|
||||||
|
#define __INT_FAST64_TYPE__ long int
|
||||||
|
#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||||
|
#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64
|
||||||
|
#define __cpp_template_auto 201606L
|
||||||
|
#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16
|
||||||
|
#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128
|
||||||
|
#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||||
|
#define __SIZEOF_POINTER__ 8
|
||||||
|
#define __SIZE_TYPE__ long unsigned int
|
||||||
|
#define __LP64__ 1
|
||||||
|
#define __DBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x
|
||||||
|
#define __LDBL_MAX_EXP__ 16384
|
||||||
|
#define __DECIMAL_BID_FORMAT__ 1
|
||||||
|
#define __FLT64_MIN_10_EXP__ (-307)
|
||||||
|
#define __FLT16_MIN_10_EXP__ (-4)
|
||||||
|
#define __FLT64X_DECIMAL_DIG__ 21
|
||||||
|
#define __DEC128_MIN__ 1E-6143DL
|
||||||
|
#define __REGISTER_PREFIX__
|
||||||
|
#define __UINT16_MAX__ 0xffff
|
||||||
|
#define __FLT128_HAS_INFINITY__ 1
|
||||||
|
#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32
|
||||||
|
#define __UINT8_TYPE__ unsigned char
|
||||||
|
#define __FLT_DIG__ 6
|
||||||
|
#define __NO_INLINE__ 1
|
||||||
|
#define __DEC_EVAL_METHOD__ 2
|
||||||
|
#define __FLT_MANT_DIG__ 24
|
||||||
|
#define __LDBL_DECIMAL_DIG__ 21
|
||||||
|
#define __VERSION__ "15.2.1 20251122"
|
||||||
|
#define __UINT64_C(c) c ## UL
|
||||||
|
#define __cpp_unicode_characters 201411L
|
||||||
|
#define __DEC64X_MIN__ 1E-6143D64x
|
||||||
|
#define _STDC_PREDEF_H 1
|
||||||
|
#define __INT_LEAST32_MAX__ 0x7fffffff
|
||||||
|
#define __GCC_ATOMIC_INT_LOCK_FREE 2
|
||||||
|
#define __FLT128_MAX_EXP__ 16384
|
||||||
|
#define __FLT32_MANT_DIG__ 24
|
||||||
|
#define __cpp_decltype 200707L
|
||||||
|
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define SIZEOF_DPTR (sizeof(void*))
|
||||||
|
#define __FLT32X_MIN_EXP__ (-1021)
|
||||||
|
#define __STDC_IEC_60559_COMPLEX__ 201404L
|
||||||
|
#define __cpp_aggregate_bases 201603L
|
||||||
|
#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16
|
||||||
|
#define __FLT128_HAS_DENORM__ 1
|
||||||
|
#define __FLT32_DECIMAL_DIG__ 9
|
||||||
|
#define __FLT128_DIG__ 33
|
||||||
|
#define __INT32_C(c) c
|
||||||
|
#define __DEC64_EPSILON__ 1E-15DD
|
||||||
|
#define __ORDER_PDP_ENDIAN__ 3412
|
||||||
|
#define __DEC128_MIN_EXP__ (-6142)
|
||||||
|
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||||
|
#define __INT_FAST32_TYPE__ long int
|
||||||
|
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||||
|
#define __DEC64X_MANT_DIG__ 34
|
||||||
|
#define __DEC128_MAX_EXP__ 6145
|
||||||
|
#define unix 1
|
||||||
|
#define __DBL_HAS_DENORM__ 1
|
||||||
|
#define __cpp_rtti 199711L
|
||||||
|
#define __UINT64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __FLT_IS_IEC_60559__ 1
|
||||||
|
#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32LE"
|
||||||
|
#define __FLT64X_DIG__ 18
|
||||||
|
#define __INT8_TYPE__ signed char
|
||||||
|
#define __cpp_digit_separators 201309L
|
||||||
|
#define __ELF__ 1
|
||||||
|
#define __GCC_ASM_FLAG_OUTPUTS__ 1
|
||||||
|
#define __UINT32_TYPE__ unsigned int
|
||||||
|
#define __BFLT16_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_RADIX__ 2
|
||||||
|
#define __INT_LEAST16_TYPE__ short int
|
||||||
|
#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L
|
||||||
|
#define __UINTMAX_C(c) c ## UL
|
||||||
|
#define __FLT16_DIG__ 3
|
||||||
|
#define __k8 1
|
||||||
|
#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x
|
||||||
|
#define __SIG_ATOMIC_MAX__ 0x7fffffff
|
||||||
|
#define __cpp_constexpr 201603L
|
||||||
|
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||||
|
#define __USER_LABEL_PREFIX__
|
||||||
|
#define __STDC_IEC_60559_BFP__ 201404L
|
||||||
|
#define __SIZEOF_PTRDIFF_T__ 8
|
||||||
|
#define __FLT64X_HAS_INFINITY__ 1
|
||||||
|
#define __SIZEOF_LONG__ 8
|
||||||
|
#define __LDBL_DIG__ 18
|
||||||
|
#define __FLT64_IS_IEC_60559__ 1
|
||||||
|
#define __x86_64__ 1
|
||||||
|
#define __FLT16_IS_IEC_60559__ 1
|
||||||
|
#define __FLT16_MAX_EXP__ 16
|
||||||
|
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||||
|
#define __STDC_EMBED_FOUND__ 1
|
||||||
|
#define __INT_FAST16_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __GCC_CONSTRUCTIVE_SIZE 64
|
||||||
|
#define __FLT64_DIG__ 15
|
||||||
|
#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __UINT_LEAST64_TYPE__ long unsigned int
|
||||||
|
#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16
|
||||||
|
#define __FLT_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_MAX_10_EXP__ 38
|
||||||
|
#define __FLT64X_HAS_DENORM__ 1
|
||||||
|
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||||
|
#define __FLT_HAS_INFINITY__ 1
|
||||||
|
#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8"
|
||||||
|
#define __cpp_unicode_literals 200710L
|
||||||
|
#define __UINT_FAST16_TYPE__ long unsigned int
|
||||||
|
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||||
|
#define __STDC_EMBED_NOT_FOUND__ 0
|
||||||
|
#define __INT_FAST32_WIDTH__ 64
|
||||||
|
#define __CHAR16_TYPE__ short unsigned int
|
||||||
|
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||||
|
#define __DEC64X_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143D64x
|
||||||
|
#define __SIZE_WIDTH__ 64
|
||||||
|
#define __SEG_FS 1
|
||||||
|
#define __INT_LEAST16_MAX__ 0x7fff
|
||||||
|
#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||||
|
#define __DEC64_MANT_DIG__ 16
|
||||||
|
#define QT_NETWORK_LIB 1
|
||||||
|
#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32
|
||||||
|
#define __SIG_ATOMIC_WIDTH__ 32
|
||||||
|
#define __GCC_DESTRUCTIVE_SIZE 64
|
||||||
|
#define __INT_LEAST64_TYPE__ long int
|
||||||
|
#define __INT16_TYPE__ short int
|
||||||
|
#define __INT_LEAST8_TYPE__ signed char
|
||||||
|
#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||||
|
#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128
|
||||||
|
#define __cpp_structured_bindings 201606L
|
||||||
|
#define __SIZEOF_INT__ 4
|
||||||
|
#define __DEC32_MAX_EXP__ 97
|
||||||
|
#define __INT_FAST8_MAX__ 0x7f
|
||||||
|
#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||||
|
#define __INTPTR_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __cpp_sized_deallocation 201309L
|
||||||
|
#define __cpp_guaranteed_copy_elision 201606L
|
||||||
|
#define linux 1
|
||||||
|
#define __FLT64_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT32_MIN_10_EXP__ (-37)
|
||||||
|
#define __EXCEPTIONS 1
|
||||||
|
#define __UINT16_C(c) c
|
||||||
|
#define __PTRDIFF_WIDTH__ 64
|
||||||
|
#define __cpp_range_based_for 201603L
|
||||||
|
#define __INT_FAST16_WIDTH__ 64
|
||||||
|
#define __FLT64_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||||
|
#define __FLT16_HAS_INFINITY__ 1
|
||||||
|
#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16
|
||||||
|
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||||
|
#define __code_model_small__ 1
|
||||||
|
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
|
||||||
|
#define __cpp_nontype_template_args 201411L
|
||||||
|
#define __DEC32_MANT_DIG__ 7
|
||||||
|
#define __k8__ 1
|
||||||
|
#define __INTPTR_TYPE__ long int
|
||||||
|
#define __UINT16_TYPE__ short unsigned int
|
||||||
|
#define __WCHAR_TYPE__ int
|
||||||
|
#define __pic__ 2
|
||||||
|
#define __UINTPTR_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __INT_FAST64_WIDTH__ 64
|
||||||
|
#define __INT_FAST64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||||
|
#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||||
|
#define __FLT32_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MAX_EXP__ 16384
|
||||||
|
#define __UINT_FAST64_TYPE__ long unsigned int
|
||||||
|
#define __cpp_inline_variables 201606L
|
||||||
|
#define __BFLT16_MIN_EXP__ (-125)
|
||||||
|
#define __INT_MAX__ 0x7fffffff
|
||||||
|
#define __linux__ 1
|
||||||
|
#define __INT64_TYPE__ long int
|
||||||
|
#define __FLT_MAX_EXP__ 128
|
||||||
|
#define __ORDER_BIG_ENDIAN__ 4321
|
||||||
|
#define __DBL_MANT_DIG__ 53
|
||||||
|
#define QT_CORE_LIB 1
|
||||||
|
#define __SIZEOF_FLOAT128__ 16
|
||||||
|
#define __BFLT16_MANT_DIG__ 8
|
||||||
|
#define __DEC64_MIN__ 1E-383DD
|
||||||
|
#define __WINT_TYPE__ unsigned int
|
||||||
|
#define __UINT_LEAST32_TYPE__ unsigned int
|
||||||
|
#define __SIZEOF_SHORT__ 2
|
||||||
|
#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||||
|
#define __SSE__ 1
|
||||||
|
#define __LDBL_MIN_EXP__ (-16381)
|
||||||
|
#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||||
|
#define __DEC64X_MIN_EXP__ (-6142)
|
||||||
|
#define __amd64__ 1
|
||||||
|
#define __WINT_WIDTH__ 32
|
||||||
|
#define __INT_LEAST64_WIDTH__ 64
|
||||||
|
#define __FLT32X_MAX_10_EXP__ 308
|
||||||
|
#define __cpp_namespace_attributes 201411L
|
||||||
|
#define __SIZEOF_INT128__ 16
|
||||||
|
#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16
|
||||||
|
#define __FLT64X_IS_IEC_60559__ 1
|
||||||
|
#define __GXX_CONSTEXPR_ASM__ 1
|
||||||
|
#define __LDBL_MAX_10_EXP__ 4932
|
||||||
|
#define __ATOMIC_RELAXED 0
|
||||||
|
#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L)
|
||||||
|
#define __INT_LEAST32_TYPE__ int
|
||||||
|
#define _LP64 1
|
||||||
|
#define __UINT8_C(c) c
|
||||||
|
#define __FLT64_MAX_EXP__ 1024
|
||||||
|
#define __cpp_return_type_deduction 201304L
|
||||||
|
#define __SIZEOF_WCHAR_T__ 4
|
||||||
|
#define __GNUC_PATCHLEVEL__ 1
|
||||||
|
#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||||
|
#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||||
|
#define __FLT128_HAS_QUIET_NAN__ 1
|
||||||
|
#define __INTMAX_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __INT_FAST8_TYPE__ signed char
|
||||||
|
#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x
|
||||||
|
#define __STDCPP_THREADS__ 1
|
||||||
|
#define __BFLT16_HAS_DENORM__ 1
|
||||||
|
#define __GNUC_STDC_INLINE__ 1
|
||||||
|
#define __FLT64_HAS_DENORM__ 1
|
||||||
|
#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32
|
||||||
|
#define __FLT16_HAS_DENORM__ 1
|
||||||
|
#define __DBL_DECIMAL_DIG__ 17
|
||||||
|
#define __STDC_UTF_32__ 1
|
||||||
|
#define __INT_FAST8_WIDTH__ 8
|
||||||
|
#define __FXSR__ 1
|
||||||
|
#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||||
|
#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||||
|
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __INTMAX_WIDTH__ 64
|
||||||
|
#define __cpp_runtime_arrays 198712L
|
||||||
|
#define __FLT32_DIG__ 6
|
||||||
|
#define __UINT64_TYPE__ long unsigned int
|
||||||
|
#define __UINT32_C(c) c ## U
|
||||||
|
#define ARCHITECTURE_ID "x86_64"
|
||||||
|
#define __cpp_alias_templates 200704L
|
||||||
|
#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F
|
||||||
|
#define __FLT128_IS_IEC_60559__ 1
|
||||||
|
#define __INT8_MAX__ 0x7f
|
||||||
|
#define __LONG_WIDTH__ 64
|
||||||
|
#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L)
|
||||||
|
#define __PIC__ 2
|
||||||
|
#define __INT32_MAX__ 0x7fffffff
|
||||||
|
#define __UINT_FAST32_TYPE__ long unsigned int
|
||||||
|
#define __FLT16_MANT_DIG__ 11
|
||||||
|
#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||||
|
#define __CHAR32_TYPE__ unsigned int
|
||||||
|
#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||||
|
#define __SSE2__ 1
|
||||||
|
#define __cpp_deduction_guides 201703L
|
||||||
|
#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||||
|
#define __INT32_TYPE__ int
|
||||||
|
#define __SIZEOF_DOUBLE__ 8
|
||||||
|
#define __cpp_exceptions 199711L
|
||||||
|
#define __FLT_MIN_10_EXP__ (-37)
|
||||||
|
#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64
|
||||||
|
#define __INT_LEAST32_WIDTH__ 32
|
||||||
|
#define __INTMAX_TYPE__ long int
|
||||||
|
#define __GLIBCXX_BITSIZE_INT_N_0 128
|
||||||
|
#define __FLT32X_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ATOMIC_CONSUME 1
|
||||||
|
#define __GNUC_MINOR__ 2
|
||||||
|
#define __GLIBCXX_TYPE_INT_N_0 __int128
|
||||||
|
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __PIE__ 2
|
||||||
|
#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x
|
||||||
|
#define __cpp_template_template_args 201611L
|
||||||
|
#define __DBL_MAX_10_EXP__ 308
|
||||||
|
#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L
|
||||||
|
#define __INT16_C(c) c
|
||||||
|
#define __STDC__ 1
|
||||||
|
#define __PTRDIFF_TYPE__ long int
|
||||||
|
#define __LONG_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __FLT32X_MIN_10_EXP__ (-307)
|
||||||
|
#define __UINTPTR_TYPE__ long unsigned int
|
||||||
|
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||||
|
#define __DEC128_MANT_DIG__ 34
|
||||||
|
#define __LDBL_MIN_10_EXP__ (-4931)
|
||||||
|
#define __cpp_generic_lambdas 201304L
|
||||||
|
#define __SSE_MATH__ 1
|
||||||
|
#define __SIZEOF_LONG_LONG__ 8
|
||||||
|
#define __cpp_user_defined_literals 200809L
|
||||||
|
#define __FLT128_DECIMAL_DIG__ 36
|
||||||
|
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
|
||||||
|
#define __FLT32_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_DECIMAL_DIG__ 9
|
||||||
|
#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||||
|
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
|
||||||
|
#define __SIZE_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __UINT_FAST8_TYPE__ unsigned char
|
||||||
|
#define _GNU_SOURCE 1
|
||||||
|
#define __cpp_init_captures 201304L
|
||||||
|
#define __ATOMIC_ACQ_REL 4
|
||||||
|
#define __ATOMIC_RELEASE 3
|
||||||
3
build/chat_client_qt_autogen/mocs_compilation.cpp
Normal file
3
build/chat_client_qt_autogen/mocs_compilation.cpp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// This file is autogenerated. Changes will be overwritten.
|
||||||
|
// No files found that require moc or the moc files are included
|
||||||
|
enum some_compilers { need_more_than_nothing };
|
||||||
0
build/chat_client_qt_autogen/timestamp
Normal file
0
build/chat_client_qt_autogen/timestamp
Normal file
BIN
build/chat_server
Executable file
BIN
build/chat_server
Executable file
Binary file not shown.
130
build/chat_server_autogen/deps
Normal file
130
build/chat_server_autogen/deps
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
chat_server_autogen/timestamp: \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/CMakeLists.txt \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/4.1.2/CMakeSystem.cmake \
|
||||||
|
/home/ganome/Projects/SCAR-719/repos/scar-chat/src/server/server.cpp \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5Config.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5/Qt5ModuleLocation.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Core/Qt5CoreMacros.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \
|
||||||
|
/usr/lib64/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp \
|
||||||
|
/usr/share/cmake/Modules/CMakeCXXInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeGenericSystem.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseArguments.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystem.cmake.in \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake \
|
||||||
|
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindOpenSSL.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPackageMessage.cmake \
|
||||||
|
/usr/share/cmake/Modules/FindPkgConfig.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake \
|
||||||
|
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/Linux.cmake \
|
||||||
|
/usr/share/cmake/Modules/Platform/UnixPaths.cmake \
|
||||||
|
/usr/bin/cmake
|
||||||
477
build/chat_server_autogen/moc_predefs.h
Normal file
477
build/chat_server_autogen/moc_predefs.h
Normal file
@ -0,0 +1,477 @@
|
|||||||
|
#define __DBL_MIN_EXP__ (-1021)
|
||||||
|
#define __LDBL_MANT_DIG__ 64
|
||||||
|
#define __cpp_nontype_template_parameter_auto 201606L
|
||||||
|
#define __UINT_LEAST16_MAX__ 0xffff
|
||||||
|
#define __FLT16_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ATOMIC_ACQUIRE 2
|
||||||
|
#define __FLT128_MAX_10_EXP__ 4932
|
||||||
|
#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F
|
||||||
|
#define __GCC_IEC_559_COMPLEX 2
|
||||||
|
#define __cpp_aggregate_nsdmi 201304L
|
||||||
|
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||||
|
#define __SIZEOF_FLOAT80__ 16
|
||||||
|
#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16
|
||||||
|
#define __INTMAX_C(c) c ## L
|
||||||
|
#define __CHAR_BIT__ 8
|
||||||
|
#define __UINT8_MAX__ 0xff
|
||||||
|
#define __SCHAR_WIDTH__ 8
|
||||||
|
#define __WINT_MAX__ 0xffffffffU
|
||||||
|
#define __FLT32_MIN_EXP__ (-125)
|
||||||
|
#define __cpp_static_assert 201411L
|
||||||
|
#define __BFLT16_MIN_10_EXP__ (-37)
|
||||||
|
#define __cpp_inheriting_constructors 201511L
|
||||||
|
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||||
|
#define __WCHAR_MAX__ 0x7fffffff
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
|
||||||
|
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
|
||||||
|
#define __GCC_IEC_559 2
|
||||||
|
#define __FLT32X_DECIMAL_DIG__ 17
|
||||||
|
#define __FLT_EVAL_METHOD__ 0
|
||||||
|
#define __cpp_binary_literals 201304L
|
||||||
|
#define __FLT64_DECIMAL_DIG__ 17
|
||||||
|
#define __CET__ 3
|
||||||
|
#define __cpp_noexcept_function_type 201510L
|
||||||
|
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||||
|
#define __cpp_variadic_templates 200704L
|
||||||
|
#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __SIG_ATOMIC_TYPE__ int
|
||||||
|
#define __DBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __FINITE_MATH_ONLY__ 0
|
||||||
|
#define __cpp_variable_templates 201304L
|
||||||
|
#define __FLT32X_MAX_EXP__ 1024
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
|
||||||
|
#define __FLT32_HAS_DENORM__ 1
|
||||||
|
#define __UINT_FAST8_MAX__ 0xff
|
||||||
|
#define __cpp_rvalue_reference 200610L
|
||||||
|
#define __cpp_nested_namespace_definitions 201411L
|
||||||
|
#define __DEC64_MAX_EXP__ 385
|
||||||
|
#define __INT8_C(c) c
|
||||||
|
#define __LDBL_HAS_INFINITY__ 1
|
||||||
|
#define __INT_LEAST8_WIDTH__ 8
|
||||||
|
#define __cpp_variadic_using 201611L
|
||||||
|
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __INT_LEAST8_MAX__ 0x7f
|
||||||
|
#define __cpp_attributes 200809L
|
||||||
|
#define __cpp_capture_star_this 201603L
|
||||||
|
#define __SHRT_MAX__ 0x7fff
|
||||||
|
#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||||
|
#define __FLT64X_MAX_10_EXP__ 4932
|
||||||
|
#define __cpp_if_constexpr 201606L
|
||||||
|
#define __BFLT16_MAX_10_EXP__ 38
|
||||||
|
#define __BFLT16_MAX_EXP__ 128
|
||||||
|
#define __LDBL_IS_IEC_60559__ 1
|
||||||
|
#define __FLT64X_HAS_QUIET_NAN__ 1
|
||||||
|
#define __UINT_LEAST8_MAX__ 0xff
|
||||||
|
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
|
||||||
|
#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128
|
||||||
|
#define __UINTMAX_TYPE__ long unsigned int
|
||||||
|
#define __cpp_nsdmi 200809L
|
||||||
|
#define __BFLT16_DECIMAL_DIG__ 4
|
||||||
|
#define __linux 1
|
||||||
|
#define __DEC32_EPSILON__ 1E-6DF
|
||||||
|
#define __FLT_EVAL_METHOD_TS_18661_3__ 0
|
||||||
|
#define __UINT32_MAX__ 0xffffffffU
|
||||||
|
#define __GXX_EXPERIMENTAL_CXX0X__ 1
|
||||||
|
#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L)
|
||||||
|
#define __FLT128_MIN_EXP__ (-16381)
|
||||||
|
#define __DEC64X_MAX_EXP__ 6145
|
||||||
|
#define __WINT_MIN__ 0U
|
||||||
|
#define __FLT128_MIN_10_EXP__ (-4931)
|
||||||
|
#define __FLT32X_IS_IEC_60559__ 1
|
||||||
|
#define __INT_LEAST16_WIDTH__ 16
|
||||||
|
#define __SCHAR_MAX__ 0x7f
|
||||||
|
#define __FLT128_MANT_DIG__ 113
|
||||||
|
#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
|
||||||
|
#define __INT64_C(c) c ## L
|
||||||
|
#define __SSP_STRONG__ 3
|
||||||
|
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
|
||||||
|
#define __ATOMIC_SEQ_CST 5
|
||||||
|
#define __unix 1
|
||||||
|
#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __FLT32X_MANT_DIG__ 53
|
||||||
|
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||||
|
#define __cpp_aligned_new 201606L
|
||||||
|
#define __FLT32_MAX_10_EXP__ 38
|
||||||
|
#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x
|
||||||
|
#define __STDC_HOSTED__ 1
|
||||||
|
#define __DEC64_MIN_EXP__ (-382)
|
||||||
|
#define __cpp_decltype_auto 201304L
|
||||||
|
#define __DBL_DIG__ 15
|
||||||
|
#define __STDC_EMBED_EMPTY__ 2
|
||||||
|
#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F
|
||||||
|
#define __GXX_WEAK__ 1
|
||||||
|
#define __SHRT_WIDTH__ 16
|
||||||
|
#define __FLT32_IS_IEC_60559__ 1
|
||||||
|
#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L
|
||||||
|
#define __DBL_IS_IEC_60559__ 1
|
||||||
|
#define __DEC32_MAX__ 9.999999E96DF
|
||||||
|
#define __cpp_threadsafe_static_init 200806L
|
||||||
|
#define __cpp_enumerator_attributes 201411L
|
||||||
|
#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x
|
||||||
|
#define __FLT32X_HAS_INFINITY__ 1
|
||||||
|
#define __unix__ 1
|
||||||
|
#define __INT_WIDTH__ 32
|
||||||
|
#define __STDC_IEC_559__ 1
|
||||||
|
#define __STDC_ISO_10646__ 201706L
|
||||||
|
#define __DECIMAL_DIG__ 21
|
||||||
|
#define __STDC_IEC_559_COMPLEX__ 1
|
||||||
|
#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64
|
||||||
|
#define __gnu_linux__ 1
|
||||||
|
#define __INT16_MAX__ 0x7fff
|
||||||
|
#define __FLT64_MIN_EXP__ (-1021)
|
||||||
|
#define __DEC64X_EPSILON__ 1E-33D64x
|
||||||
|
#define __FLT64X_MIN_10_EXP__ (-4931)
|
||||||
|
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT16_MIN_EXP__ (-13)
|
||||||
|
#define __FLT64_MANT_DIG__ 53
|
||||||
|
#define __FLT64X_MANT_DIG__ 64
|
||||||
|
#define __BFLT16_DIG__ 2
|
||||||
|
#define __GNUC__ 15
|
||||||
|
#define __GXX_RTTI 1
|
||||||
|
#define __pie__ 2
|
||||||
|
#define __MMX__ 1
|
||||||
|
#define __FLT_HAS_DENORM__ 1
|
||||||
|
#define __SIZEOF_LONG_DOUBLE__ 16
|
||||||
|
#define __BIGGEST_ALIGNMENT__ 16
|
||||||
|
#define __STDC_UTF_16__ 1
|
||||||
|
#define __FLT64_MAX_10_EXP__ 308
|
||||||
|
#define __BFLT16_IS_IEC_60559__ 0
|
||||||
|
#define __FLT16_MAX_10_EXP__ 4
|
||||||
|
#define __cpp_delegating_constructors 200604L
|
||||||
|
#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||||
|
#define __cpp_raw_strings 200710L
|
||||||
|
#define __INT_FAST32_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __DBL_HAS_INFINITY__ 1
|
||||||
|
#define __INT64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __SIZEOF_FLOAT__ 4
|
||||||
|
#define __HAVE_SPECULATION_SAFE_VALUE 1
|
||||||
|
#define __cpp_fold_expressions 201603L
|
||||||
|
#define __DEC32_MIN_EXP__ (-94)
|
||||||
|
#define __INTPTR_WIDTH__ 64
|
||||||
|
#define __UINT_LEAST32_MAX__ 0xffffffffU
|
||||||
|
#define __FLT32X_HAS_DENORM__ 1
|
||||||
|
#define __INT_FAST16_TYPE__ long int
|
||||||
|
#define __MMX_WITH_SSE__ 1
|
||||||
|
#define __LDBL_HAS_DENORM__ 1
|
||||||
|
#define __SEG_GS 1
|
||||||
|
#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16
|
||||||
|
#define __cplusplus 201703L
|
||||||
|
#define __cpp_ref_qualifiers 200710L
|
||||||
|
#define __DEC32_MIN__ 1E-95DF
|
||||||
|
#define __DEPRECATED 1
|
||||||
|
#define __cpp_rvalue_references 200610L
|
||||||
|
#define __DBL_MAX_EXP__ 1024
|
||||||
|
#define __WCHAR_WIDTH__ 32
|
||||||
|
#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||||
|
#define __DEC128_EPSILON__ 1E-33DL
|
||||||
|
#define __FLT16_DECIMAL_DIG__ 5
|
||||||
|
#define __SSE2_MATH__ 1
|
||||||
|
#define __ATOMIC_HLE_RELEASE 131072
|
||||||
|
#define __PTRDIFF_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __amd64 1
|
||||||
|
#define __DEC64X_MAX__ 9.999999999999999999999999999999999E6144D64x
|
||||||
|
#define __ATOMIC_HLE_ACQUIRE 65536
|
||||||
|
#define __GNUG__ 15
|
||||||
|
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
|
||||||
|
#define __SIZEOF_SIZE_T__ 8
|
||||||
|
#define __BFLT16_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MIN_EXP__ (-16381)
|
||||||
|
#define __SIZEOF_WINT_T__ 4
|
||||||
|
#define __FLT32X_DIG__ 15
|
||||||
|
#define __LONG_LONG_WIDTH__ 64
|
||||||
|
#define __cpp_initializer_lists 200806L
|
||||||
|
#define __FLT32_MAX_EXP__ 128
|
||||||
|
#define ABI_ID "ELF"
|
||||||
|
#define __cpp_hex_float 201603L
|
||||||
|
#define __GXX_ABI_VERSION 1020
|
||||||
|
#define __FLT_MIN_EXP__ (-125)
|
||||||
|
#define __GCC_HAVE_DWARF2_CFI_ASM 1
|
||||||
|
#define __x86_64 1
|
||||||
|
#define __cpp_lambdas 200907L
|
||||||
|
#define __INT_FAST64_TYPE__ long int
|
||||||
|
#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||||
|
#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64
|
||||||
|
#define __cpp_template_auto 201606L
|
||||||
|
#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16
|
||||||
|
#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128
|
||||||
|
#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||||
|
#define __SIZEOF_POINTER__ 8
|
||||||
|
#define __SIZE_TYPE__ long unsigned int
|
||||||
|
#define __LP64__ 1
|
||||||
|
#define __DBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x
|
||||||
|
#define __LDBL_MAX_EXP__ 16384
|
||||||
|
#define __DECIMAL_BID_FORMAT__ 1
|
||||||
|
#define __FLT64_MIN_10_EXP__ (-307)
|
||||||
|
#define __FLT16_MIN_10_EXP__ (-4)
|
||||||
|
#define __FLT64X_DECIMAL_DIG__ 21
|
||||||
|
#define __DEC128_MIN__ 1E-6143DL
|
||||||
|
#define __REGISTER_PREFIX__
|
||||||
|
#define __UINT16_MAX__ 0xffff
|
||||||
|
#define __FLT128_HAS_INFINITY__ 1
|
||||||
|
#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32
|
||||||
|
#define __UINT8_TYPE__ unsigned char
|
||||||
|
#define __FLT_DIG__ 6
|
||||||
|
#define __NO_INLINE__ 1
|
||||||
|
#define __DEC_EVAL_METHOD__ 2
|
||||||
|
#define __FLT_MANT_DIG__ 24
|
||||||
|
#define __LDBL_DECIMAL_DIG__ 21
|
||||||
|
#define __VERSION__ "15.2.1 20251122"
|
||||||
|
#define __UINT64_C(c) c ## UL
|
||||||
|
#define __cpp_unicode_characters 201411L
|
||||||
|
#define __DEC64X_MIN__ 1E-6143D64x
|
||||||
|
#define _STDC_PREDEF_H 1
|
||||||
|
#define __INT_LEAST32_MAX__ 0x7fffffff
|
||||||
|
#define __GCC_ATOMIC_INT_LOCK_FREE 2
|
||||||
|
#define __FLT128_MAX_EXP__ 16384
|
||||||
|
#define __FLT32_MANT_DIG__ 24
|
||||||
|
#define __cpp_decltype 200707L
|
||||||
|
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define SIZEOF_DPTR (sizeof(void*))
|
||||||
|
#define __FLT32X_MIN_EXP__ (-1021)
|
||||||
|
#define __STDC_IEC_60559_COMPLEX__ 201404L
|
||||||
|
#define __cpp_aggregate_bases 201603L
|
||||||
|
#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16
|
||||||
|
#define __FLT128_HAS_DENORM__ 1
|
||||||
|
#define __FLT32_DECIMAL_DIG__ 9
|
||||||
|
#define __FLT128_DIG__ 33
|
||||||
|
#define __INT32_C(c) c
|
||||||
|
#define __DEC64_EPSILON__ 1E-15DD
|
||||||
|
#define __ORDER_PDP_ENDIAN__ 3412
|
||||||
|
#define __DEC128_MIN_EXP__ (-6142)
|
||||||
|
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||||
|
#define __INT_FAST32_TYPE__ long int
|
||||||
|
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||||
|
#define __DEC64X_MANT_DIG__ 34
|
||||||
|
#define __DEC128_MAX_EXP__ 6145
|
||||||
|
#define unix 1
|
||||||
|
#define __DBL_HAS_DENORM__ 1
|
||||||
|
#define __cpp_rtti 199711L
|
||||||
|
#define __UINT64_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __FLT_IS_IEC_60559__ 1
|
||||||
|
#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32LE"
|
||||||
|
#define __FLT64X_DIG__ 18
|
||||||
|
#define __INT8_TYPE__ signed char
|
||||||
|
#define __cpp_digit_separators 201309L
|
||||||
|
#define __ELF__ 1
|
||||||
|
#define __GCC_ASM_FLAG_OUTPUTS__ 1
|
||||||
|
#define __UINT32_TYPE__ unsigned int
|
||||||
|
#define __BFLT16_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_RADIX__ 2
|
||||||
|
#define __INT_LEAST16_TYPE__ short int
|
||||||
|
#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L
|
||||||
|
#define __UINTMAX_C(c) c ## UL
|
||||||
|
#define __FLT16_DIG__ 3
|
||||||
|
#define __k8 1
|
||||||
|
#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x
|
||||||
|
#define __SIG_ATOMIC_MAX__ 0x7fffffff
|
||||||
|
#define __cpp_constexpr 201603L
|
||||||
|
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||||
|
#define __USER_LABEL_PREFIX__
|
||||||
|
#define __STDC_IEC_60559_BFP__ 201404L
|
||||||
|
#define __SIZEOF_PTRDIFF_T__ 8
|
||||||
|
#define __FLT64X_HAS_INFINITY__ 1
|
||||||
|
#define __SIZEOF_LONG__ 8
|
||||||
|
#define __LDBL_DIG__ 18
|
||||||
|
#define __FLT64_IS_IEC_60559__ 1
|
||||||
|
#define __x86_64__ 1
|
||||||
|
#define __FLT16_IS_IEC_60559__ 1
|
||||||
|
#define __FLT16_MAX_EXP__ 16
|
||||||
|
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||||
|
#define __STDC_EMBED_FOUND__ 1
|
||||||
|
#define __INT_FAST16_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __GCC_CONSTRUCTIVE_SIZE 64
|
||||||
|
#define __FLT64_DIG__ 15
|
||||||
|
#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __UINT_LEAST64_TYPE__ long unsigned int
|
||||||
|
#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16
|
||||||
|
#define __FLT_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_MAX_10_EXP__ 38
|
||||||
|
#define __FLT64X_HAS_DENORM__ 1
|
||||||
|
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||||
|
#define __FLT_HAS_INFINITY__ 1
|
||||||
|
#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8"
|
||||||
|
#define __cpp_unicode_literals 200710L
|
||||||
|
#define __UINT_FAST16_TYPE__ long unsigned int
|
||||||
|
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||||
|
#define __STDC_EMBED_NOT_FOUND__ 0
|
||||||
|
#define __INT_FAST32_WIDTH__ 64
|
||||||
|
#define __CHAR16_TYPE__ short unsigned int
|
||||||
|
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||||
|
#define __DEC64X_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143D64x
|
||||||
|
#define __SIZE_WIDTH__ 64
|
||||||
|
#define __SEG_FS 1
|
||||||
|
#define __INT_LEAST16_MAX__ 0x7fff
|
||||||
|
#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||||
|
#define __DEC64_MANT_DIG__ 16
|
||||||
|
#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32
|
||||||
|
#define __SIG_ATOMIC_WIDTH__ 32
|
||||||
|
#define __GCC_DESTRUCTIVE_SIZE 64
|
||||||
|
#define __INT_LEAST64_TYPE__ long int
|
||||||
|
#define __INT16_TYPE__ short int
|
||||||
|
#define __INT_LEAST8_TYPE__ signed char
|
||||||
|
#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||||
|
#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128
|
||||||
|
#define __cpp_structured_bindings 201606L
|
||||||
|
#define __SIZEOF_INT__ 4
|
||||||
|
#define __DEC32_MAX_EXP__ 97
|
||||||
|
#define __INT_FAST8_MAX__ 0x7f
|
||||||
|
#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||||
|
#define __INTPTR_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __cpp_sized_deallocation 201309L
|
||||||
|
#define __cpp_guaranteed_copy_elision 201606L
|
||||||
|
#define linux 1
|
||||||
|
#define __FLT64_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT32_MIN_10_EXP__ (-37)
|
||||||
|
#define __EXCEPTIONS 1
|
||||||
|
#define __UINT16_C(c) c
|
||||||
|
#define __PTRDIFF_WIDTH__ 64
|
||||||
|
#define __cpp_range_based_for 201603L
|
||||||
|
#define __INT_FAST16_WIDTH__ 64
|
||||||
|
#define __FLT64_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||||
|
#define __FLT16_HAS_INFINITY__ 1
|
||||||
|
#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16
|
||||||
|
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||||
|
#define __code_model_small__ 1
|
||||||
|
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
|
||||||
|
#define __cpp_nontype_template_args 201411L
|
||||||
|
#define __DEC32_MANT_DIG__ 7
|
||||||
|
#define __k8__ 1
|
||||||
|
#define __INTPTR_TYPE__ long int
|
||||||
|
#define __UINT16_TYPE__ short unsigned int
|
||||||
|
#define __WCHAR_TYPE__ int
|
||||||
|
#define __pic__ 2
|
||||||
|
#define __UINTPTR_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __INT_FAST64_WIDTH__ 64
|
||||||
|
#define __INT_FAST64_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||||
|
#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||||
|
#define __FLT32_HAS_INFINITY__ 1
|
||||||
|
#define __FLT64X_MAX_EXP__ 16384
|
||||||
|
#define __UINT_FAST64_TYPE__ long unsigned int
|
||||||
|
#define __cpp_inline_variables 201606L
|
||||||
|
#define __BFLT16_MIN_EXP__ (-125)
|
||||||
|
#define __INT_MAX__ 0x7fffffff
|
||||||
|
#define __linux__ 1
|
||||||
|
#define __INT64_TYPE__ long int
|
||||||
|
#define __FLT_MAX_EXP__ 128
|
||||||
|
#define __ORDER_BIG_ENDIAN__ 4321
|
||||||
|
#define __DBL_MANT_DIG__ 53
|
||||||
|
#define __SIZEOF_FLOAT128__ 16
|
||||||
|
#define __BFLT16_MANT_DIG__ 8
|
||||||
|
#define __DEC64_MIN__ 1E-383DD
|
||||||
|
#define __WINT_TYPE__ unsigned int
|
||||||
|
#define __UINT_LEAST32_TYPE__ unsigned int
|
||||||
|
#define __SIZEOF_SHORT__ 2
|
||||||
|
#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||||
|
#define __SSE__ 1
|
||||||
|
#define __LDBL_MIN_EXP__ (-16381)
|
||||||
|
#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||||
|
#define __DEC64X_MIN_EXP__ (-6142)
|
||||||
|
#define __amd64__ 1
|
||||||
|
#define __WINT_WIDTH__ 32
|
||||||
|
#define __INT_LEAST64_WIDTH__ 64
|
||||||
|
#define __FLT32X_MAX_10_EXP__ 308
|
||||||
|
#define __cpp_namespace_attributes 201411L
|
||||||
|
#define __SIZEOF_INT128__ 16
|
||||||
|
#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16
|
||||||
|
#define __FLT64X_IS_IEC_60559__ 1
|
||||||
|
#define __GXX_CONSTEXPR_ASM__ 1
|
||||||
|
#define __LDBL_MAX_10_EXP__ 4932
|
||||||
|
#define __ATOMIC_RELAXED 0
|
||||||
|
#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L)
|
||||||
|
#define __INT_LEAST32_TYPE__ int
|
||||||
|
#define _LP64 1
|
||||||
|
#define __UINT8_C(c) c
|
||||||
|
#define __FLT64_MAX_EXP__ 1024
|
||||||
|
#define __cpp_return_type_deduction 201304L
|
||||||
|
#define __SIZEOF_WCHAR_T__ 4
|
||||||
|
#define __GNUC_PATCHLEVEL__ 1
|
||||||
|
#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||||
|
#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||||
|
#define __FLT128_HAS_QUIET_NAN__ 1
|
||||||
|
#define __INTMAX_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __INT_FAST8_TYPE__ signed char
|
||||||
|
#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x
|
||||||
|
#define __STDCPP_THREADS__ 1
|
||||||
|
#define __BFLT16_HAS_DENORM__ 1
|
||||||
|
#define __GNUC_STDC_INLINE__ 1
|
||||||
|
#define __FLT64_HAS_DENORM__ 1
|
||||||
|
#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32
|
||||||
|
#define __FLT16_HAS_DENORM__ 1
|
||||||
|
#define __DBL_DECIMAL_DIG__ 17
|
||||||
|
#define __STDC_UTF_32__ 1
|
||||||
|
#define __INT_FAST8_WIDTH__ 8
|
||||||
|
#define __FXSR__ 1
|
||||||
|
#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||||
|
#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||||
|
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __INTMAX_WIDTH__ 64
|
||||||
|
#define __cpp_runtime_arrays 198712L
|
||||||
|
#define __FLT32_DIG__ 6
|
||||||
|
#define __UINT64_TYPE__ long unsigned int
|
||||||
|
#define __UINT32_C(c) c ## U
|
||||||
|
#define ARCHITECTURE_ID "x86_64"
|
||||||
|
#define __cpp_alias_templates 200704L
|
||||||
|
#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F
|
||||||
|
#define __FLT128_IS_IEC_60559__ 1
|
||||||
|
#define __INT8_MAX__ 0x7f
|
||||||
|
#define __LONG_WIDTH__ 64
|
||||||
|
#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L)
|
||||||
|
#define __PIC__ 2
|
||||||
|
#define __INT32_MAX__ 0x7fffffff
|
||||||
|
#define __UINT_FAST32_TYPE__ long unsigned int
|
||||||
|
#define __FLT16_MANT_DIG__ 11
|
||||||
|
#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||||
|
#define __CHAR32_TYPE__ unsigned int
|
||||||
|
#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||||
|
#define __SSE2__ 1
|
||||||
|
#define __cpp_deduction_guides 201703L
|
||||||
|
#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||||
|
#define __INT32_TYPE__ int
|
||||||
|
#define __SIZEOF_DOUBLE__ 8
|
||||||
|
#define __cpp_exceptions 199711L
|
||||||
|
#define __FLT_MIN_10_EXP__ (-37)
|
||||||
|
#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64
|
||||||
|
#define __INT_LEAST32_WIDTH__ 32
|
||||||
|
#define __INTMAX_TYPE__ long int
|
||||||
|
#define __GLIBCXX_BITSIZE_INT_N_0 128
|
||||||
|
#define __FLT32X_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ATOMIC_CONSUME 1
|
||||||
|
#define __GNUC_MINOR__ 2
|
||||||
|
#define __GLIBCXX_TYPE_INT_N_0 __int128
|
||||||
|
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __PIE__ 2
|
||||||
|
#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x
|
||||||
|
#define __cpp_template_template_args 201611L
|
||||||
|
#define __DBL_MAX_10_EXP__ 308
|
||||||
|
#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L
|
||||||
|
#define __INT16_C(c) c
|
||||||
|
#define __STDC__ 1
|
||||||
|
#define __PTRDIFF_TYPE__ long int
|
||||||
|
#define __LONG_MAX__ 0x7fffffffffffffffL
|
||||||
|
#define __FLT32X_MIN_10_EXP__ (-307)
|
||||||
|
#define __UINTPTR_TYPE__ long unsigned int
|
||||||
|
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||||
|
#define __DEC128_MANT_DIG__ 34
|
||||||
|
#define __LDBL_MIN_10_EXP__ (-4931)
|
||||||
|
#define __cpp_generic_lambdas 201304L
|
||||||
|
#define __SSE_MATH__ 1
|
||||||
|
#define __SIZEOF_LONG_LONG__ 8
|
||||||
|
#define __cpp_user_defined_literals 200809L
|
||||||
|
#define __FLT128_DECIMAL_DIG__ 36
|
||||||
|
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
|
||||||
|
#define __FLT32_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_DECIMAL_DIG__ 9
|
||||||
|
#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||||
|
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
|
||||||
|
#define __SIZE_MAX__ 0xffffffffffffffffUL
|
||||||
|
#define __UINT_FAST8_TYPE__ unsigned char
|
||||||
|
#define _GNU_SOURCE 1
|
||||||
|
#define __cpp_init_captures 201304L
|
||||||
|
#define __ATOMIC_ACQ_REL 4
|
||||||
|
#define __ATOMIC_RELEASE 3
|
||||||
3
build/chat_server_autogen/mocs_compilation.cpp
Normal file
3
build/chat_server_autogen/mocs_compilation.cpp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// This file is autogenerated. Changes will be overwritten.
|
||||||
|
// No files found that require moc or the moc files are included
|
||||||
|
enum some_compilers { need_more_than_nothing };
|
||||||
0
build/chat_server_autogen/timestamp
Normal file
0
build/chat_server_autogen/timestamp
Normal file
106
build/cmake_install.cmake
Normal file
106
build/cmake_install.cmake
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
# Install script for directory: /home/ganome/Projects/SCAR-719/repos/scar-chat
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set path to fallback-tool for dependency-resolution.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server")
|
||||||
|
file(RPATH_CHECK
|
||||||
|
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server"
|
||||||
|
RPATH "")
|
||||||
|
endif()
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_server")
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server")
|
||||||
|
if(CMAKE_INSTALL_DO_STRIP)
|
||||||
|
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_server")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
include("/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_server.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt")
|
||||||
|
file(RPATH_CHECK
|
||||||
|
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt"
|
||||||
|
RPATH "")
|
||||||
|
endif()
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/chat_client_qt")
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt")
|
||||||
|
if(CMAKE_INSTALL_DO_STRIP)
|
||||||
|
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/chat_client_qt")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
include("/home/ganome/Projects/SCAR-719/repos/scar-chat/build/CMakeFiles/chat_client_qt.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
file(WRITE "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/install_local_manifest.txt"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
||||||
|
unset(CMAKE_INST_COMP_HASH)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
file(WRITE "/home/ganome/Projects/SCAR-719/repos/scar-chat/build/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
30
certs/generate_certs.sh
Executable file
30
certs/generate_certs.sh
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Generate self-signed SSL/TLS certificates for SCAR Chat
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "Generating SSL/TLS certificates for SCAR Chat Server..."
|
||||||
|
|
||||||
|
# Generate private key
|
||||||
|
echo "[1/2] Generating private key (2048-bit RSA)..."
|
||||||
|
openssl genrsa -out server.key 2048
|
||||||
|
|
||||||
|
# Generate self-signed certificate (valid for 365 days)
|
||||||
|
echo "[2/2] Generating self-signed certificate..."
|
||||||
|
openssl req -new -x509 -key server.key -out server.crt -days 365 \
|
||||||
|
-subj "/C=US/ST=State/L=City/O=SCAR/CN=localhost"
|
||||||
|
|
||||||
|
# Set appropriate permissions
|
||||||
|
chmod 600 server.key
|
||||||
|
chmod 644 server.crt
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "✓ Certificates generated successfully!"
|
||||||
|
echo ""
|
||||||
|
echo "Files created:"
|
||||||
|
echo " - server.crt (certificate, public)"
|
||||||
|
echo " - server.key (private key, keep secure)"
|
||||||
|
echo ""
|
||||||
|
echo "Certificate details:"
|
||||||
|
openssl x509 -in server.crt -noout -text | grep -E "(Subject|Issuer|Not Before|Not After|Public-Key)"
|
||||||
21
certs/server.crt
Normal file
21
certs/server.crt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDfzCCAmegAwIBAgIUFLZp6zprOxrjLYkK6TKdgIAUGoUwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwTzELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBVN0YXRlMQ0wCwYDVQQHDARDaXR5
|
||||||
|
MQ0wCwYDVQQKDARTQ0FSMRIwEAYDVQQDDAlsb2NhbGhvc3QwHhcNMjUxMjA1MDIz
|
||||||
|
ODU4WhcNMjYxMjA1MDIzODU4WjBPMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFU3Rh
|
||||||
|
dGUxDTALBgNVBAcMBENpdHkxDTALBgNVBAoMBFNDQVIxEjAQBgNVBAMMCWxvY2Fs
|
||||||
|
aG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOWynV8pH2bqPJ+i
|
||||||
|
7qgDmzT04inIAJjGiADKatpU5wkTCUCx+JbpEk0imrdysUe8MLY1Dlvz6VnFpQta
|
||||||
|
6P8IvySUciFoyzpYp4+KKKVDWMxJMVrK3d+m0V8HlkTuP/YIOU/cnl50qerZrgQU
|
||||||
|
MzGDDUgLmVknhl/BkhSR1ttgr4FUiq73neoHAtTBghyMUWDEQA0XFVmldm6YWANj
|
||||||
|
s6z4T0tJKOHKF+7wcu14COOh0OOBZiTTuaPiEZ0pEqI0+0UnUS2Q4LkSxbmQY0ne
|
||||||
|
8c9S87Cg3w7p0oTo1m2Hzc6ySu1+dIWb7etUPvzULJD9axkXTIwiVzBAoeEQFEJ5
|
||||||
|
TqueHpUCAwEAAaNTMFEwHQYDVR0OBBYEFCfii0W2k7uw8k0b4uRyv/bLpbzXMB8G
|
||||||
|
A1UdIwQYMBaAFCfii0W2k7uw8k0b4uRyv/bLpbzXMA8GA1UdEwEB/wQFMAMBAf8w
|
||||||
|
DQYJKoZIhvcNAQELBQADggEBAMVwvAz3USAxG2rjzkegYDg20WdZk6Qak1Z3Q6vg
|
||||||
|
Tp1Y6GptAINUjDmIfzSTCbF4A4D5Y/CflCSuXyqB3nNglZx4QQ8dvMVEi/SGQxcK
|
||||||
|
sv0diWQMWGdWERYk1CUZxa80LILZ55XY9ZioyDgo57tbK32kiCZibmA9y5Twr7Cr
|
||||||
|
rEFr/mtYt5yBSWzW96dhYlP6DAWG4ByJNWwb0PbERcXpaCYyLll1HRiKqhJtGG47
|
||||||
|
QzIL0mEiYb6cE8kJCCY0Dyj8aNynel7AHcU+nnb7BEH6VpQ//yhwMT6kPhKaQSeb
|
||||||
|
nNEexEHcrK1wuOCcpID0oG7NxUfW0hn5XsNxchjD5m5ZNzA=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
28
certs/server.key
Normal file
28
certs/server.key
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDlsp1fKR9m6jyf
|
||||||
|
ou6oA5s09OIpyACYxogAymraVOcJEwlAsfiW6RJNIpq3crFHvDC2NQ5b8+lZxaUL
|
||||||
|
Wuj/CL8klHIhaMs6WKePiiilQ1jMSTFayt3fptFfB5ZE7j/2CDlP3J5edKnq2a4E
|
||||||
|
FDMxgw1IC5lZJ4ZfwZIUkdbbYK+BVIqu953qBwLUwYIcjFFgxEANFxVZpXZumFgD
|
||||||
|
Y7Os+E9LSSjhyhfu8HLteAjjodDjgWYk07mj4hGdKRKiNPtFJ1EtkOC5EsW5kGNJ
|
||||||
|
3vHPUvOwoN8O6dKE6NZth83OskrtfnSFm+3rVD781CyQ/WsZF0yMIlcwQKHhEBRC
|
||||||
|
eU6rnh6VAgMBAAECggEAII2X0Ay77pHz1Yv51sXsES1DgDhgHUbFr5cAXcD6nUad
|
||||||
|
YRXX7UtK1LO6yZTvmwMIxEnwpweCYr6oDVvs+Xf73utK4YFAjBxUYvtpl0JcK1eU
|
||||||
|
LxHhL/ksYxNoMIyzc+LmfHL/3tMZ4bbH+rwCJVo1X6iFKyV23ctJMLEaiizBsspL
|
||||||
|
u3Quq+FzG1/a0LIeE2p3oBgolHduhSz5ljkL9xM3bxr7UVR9B02oR3kjU4Dv7gMb
|
||||||
|
OTSTQi1NRsd5AnWY9+A5FFZusy6A9ViUtjV3NFA5+I7IH4ggplTe2cgdPnN2AYhp
|
||||||
|
lAowjYRr5RWcf44JPiZ6aM8wDYWKJjHk12fludIyAQKBgQD46DAy66E+Nl02iY2v
|
||||||
|
PZIkovx3ArsuRKWrAcIvQZS9VEjKIbWJ8P56/Kp3q/bB8ZyH6QtnlXzmnRX8whEd
|
||||||
|
xu+nYv7UsQq1O8QjsT9FICedOvOA2Hyy1s9T0r4x6G2F7PMrM9F2wNujO5obSE2o
|
||||||
|
kWXddiqKOSr7CWU0kI7OMFggEQKBgQDsPkrG8LklEIdnj/4BdhauasV8sjOgPJgV
|
||||||
|
p9Ck1F6KLvEWv6UG8RUKGcbgB0LjUKAJxgqRX758QIzOmdbQ/oPuBTyhQ90sY4QW
|
||||||
|
ndsPa0VnaqGpq4EvKFMjYs8l+MVrHwRBQkCG1FbVQ4Aki6YJMe0sg7uUm6TD2HAj
|
||||||
|
IcyXzp/aRQKBgD5ngEYT+34shRw6SnKIHk7fKirwXVuRTHPeYgAVEiSRsBo1b11h
|
||||||
|
NXxCQr70N06Ss+sDS5+xw/nRooSXZ1Eu4kD2Oeu7Y3LixB8qvjEniacK86f3HvR7
|
||||||
|
lMlwSc0bd/Ie4SyQtlBus+Jt/AohC49avM5UZP/4q0T7KwuNvrAFQOLxAoGBAOU1
|
||||||
|
4xN2SAyAJwACIy6DxqnfilDcDV7wq5aHRdZG/psPxHaP5qv/iKxOKjj+kpU+iqgw
|
||||||
|
79vwiz6+2l8xv8zyxEpR5muJDrScsXHIItyo9aPLP6MBdcutUkzI97cd0V2HsHco
|
||||||
|
sraemsk8Pr42iBfvyvAfuAYNpSUngFV1262Gmm4JAoGBAKXtTmzykVNnd5s1+sEx
|
||||||
|
33rWbJzuwOWwcBM6LBJwuGrcxr9WfO3yL892N0IabfvN1g9+66uyOdbW2Vs2Um6R
|
||||||
|
rez/Gk5kPVsN0cr9xlxBCG60o6Prtqq0Xbi9IFJC7lyA//DAHe6+weaK3UnJHFeE
|
||||||
|
AD4WGb0PUbyYpvB3uvd80xxo
|
||||||
|
-----END PRIVATE KEY-----
|
||||||
231
src/qt_client/main.cpp
Normal file
231
src/qt_client/main.cpp
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
#include <QApplication>
|
||||||
|
#include <QMainWindow>
|
||||||
|
#include <QWidget>
|
||||||
|
#include <QVBoxLayout>
|
||||||
|
#include <QHBoxLayout>
|
||||||
|
#include <QTextEdit>
|
||||||
|
#include <QLineEdit>
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QLabel>
|
||||||
|
#include <QColorDialog>
|
||||||
|
#include <QSlider>
|
||||||
|
#include <QSpinBox>
|
||||||
|
#include <QSslSocket>
|
||||||
|
#include <QHostAddress>
|
||||||
|
#include <QMessageBox>
|
||||||
|
#include <QThread>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
class ChatClient : public QMainWindow {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
ChatClient(QWidget *parent = nullptr) : QMainWindow(parent) {
|
||||||
|
setWindowTitle("SCAR Chat Client");
|
||||||
|
setGeometry(100, 100, 800, 600);
|
||||||
|
|
||||||
|
// Create central widget
|
||||||
|
QWidget *central = new QWidget(this);
|
||||||
|
setCentralWidget(central);
|
||||||
|
|
||||||
|
// Main layout
|
||||||
|
QVBoxLayout *main_layout = new QVBoxLayout(central);
|
||||||
|
|
||||||
|
// Connection section
|
||||||
|
QHBoxLayout *conn_layout = new QHBoxLayout();
|
||||||
|
QLabel *host_label = new QLabel("Host:", this);
|
||||||
|
host_input = new QLineEdit("localhost", this);
|
||||||
|
QLabel *port_label = new QLabel("Port:", this);
|
||||||
|
port_input = new QLineEdit("42317", this);
|
||||||
|
connect_btn = new QPushButton("Connect", this);
|
||||||
|
conn_layout->addWidget(host_label);
|
||||||
|
conn_layout->addWidget(host_input);
|
||||||
|
conn_layout->addWidget(port_label);
|
||||||
|
conn_layout->addWidget(port_input);
|
||||||
|
conn_layout->addWidget(connect_btn);
|
||||||
|
main_layout->addLayout(conn_layout);
|
||||||
|
|
||||||
|
// Chat display
|
||||||
|
chat_display = new QTextEdit(this);
|
||||||
|
chat_display->setReadOnly(true);
|
||||||
|
main_layout->addWidget(chat_display);
|
||||||
|
|
||||||
|
// Message input
|
||||||
|
QHBoxLayout *msg_layout = new QHBoxLayout();
|
||||||
|
message_input = new QLineEdit(this);
|
||||||
|
send_btn = new QPushButton("Send", this);
|
||||||
|
msg_layout->addWidget(message_input);
|
||||||
|
msg_layout->addWidget(send_btn);
|
||||||
|
main_layout->addLayout(msg_layout);
|
||||||
|
|
||||||
|
// Settings section
|
||||||
|
QHBoxLayout *settings_layout = new QHBoxLayout();
|
||||||
|
|
||||||
|
// Background color
|
||||||
|
bg_color_btn = new QPushButton("BG Color", this);
|
||||||
|
settings_layout->addWidget(bg_color_btn);
|
||||||
|
|
||||||
|
// Chat text color
|
||||||
|
text_color_btn = new QPushButton("Text Color", this);
|
||||||
|
settings_layout->addWidget(text_color_btn);
|
||||||
|
|
||||||
|
// Transparency slider
|
||||||
|
QLabel *trans_label = new QLabel("Transparency:", this);
|
||||||
|
transparency_slider = new QSlider(Qt::Horizontal, this);
|
||||||
|
transparency_slider->setMinimum(0);
|
||||||
|
transparency_slider->setMaximum(100);
|
||||||
|
transparency_slider->setValue(100);
|
||||||
|
transparency_value = new QLabel("100%", this);
|
||||||
|
settings_layout->addWidget(trans_label);
|
||||||
|
settings_layout->addWidget(transparency_slider);
|
||||||
|
settings_layout->addWidget(transparency_value);
|
||||||
|
|
||||||
|
main_layout->addLayout(settings_layout);
|
||||||
|
|
||||||
|
// Connect signals
|
||||||
|
connect(connect_btn, &QPushButton::clicked, this, &ChatClient::on_connect);
|
||||||
|
connect(send_btn, &QPushButton::clicked, this, &ChatClient::on_send_message);
|
||||||
|
connect(message_input, &QLineEdit::returnPressed, this, &ChatClient::on_send_message);
|
||||||
|
connect(bg_color_btn, &QPushButton::clicked, this, &ChatClient::on_bg_color);
|
||||||
|
connect(text_color_btn, &QPushButton::clicked, this, &ChatClient::on_text_color);
|
||||||
|
connect(transparency_slider, &QSlider::valueChanged, this, &ChatClient::on_transparency_changed);
|
||||||
|
|
||||||
|
// Initialize socket
|
||||||
|
socket = new QSslSocket(this);
|
||||||
|
connect(socket, &QSslSocket::connected, this, &ChatClient::on_socket_connected);
|
||||||
|
connect(socket, &QSslSocket::disconnected, this, &ChatClient::on_socket_disconnected);
|
||||||
|
connect(socket, &QSslSocket::readyRead, this, &ChatClient::on_socket_read);
|
||||||
|
connect(socket, QOverload<QAbstractSocket::SocketError>::of(&QSslSocket::error),
|
||||||
|
this, &ChatClient::on_socket_error);
|
||||||
|
connect(socket, QOverload<const QList<QSslError> &>::of(&QSslSocket::sslErrors),
|
||||||
|
this, &ChatClient::on_ssl_errors);
|
||||||
|
|
||||||
|
// Initialize colors
|
||||||
|
bg_color = Qt::white;
|
||||||
|
text_color = Qt::black;
|
||||||
|
update_window_colors();
|
||||||
|
}
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void on_connect() {
|
||||||
|
if (socket->state() == QSslSocket::ConnectedState) {
|
||||||
|
socket->disconnectFromHost();
|
||||||
|
connect_btn->setText("Connect");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString host = host_input->text();
|
||||||
|
int port = port_input->text().toInt();
|
||||||
|
|
||||||
|
chat_display->append("[System] Connecting to " + host + ":" + QString::number(port) + "...");
|
||||||
|
socket->connectToHostEncrypted(host, port);
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_socket_connected() {
|
||||||
|
chat_display->append("[System] Connected to server!");
|
||||||
|
connect_btn->setText("Disconnect");
|
||||||
|
message_input->setFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_socket_disconnected() {
|
||||||
|
chat_display->append("[System] Disconnected from server");
|
||||||
|
connect_btn->setText("Connect");
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_socket_read() {
|
||||||
|
while (socket->canReadLine()) {
|
||||||
|
QString message = QString::fromUtf8(socket->readLine()).trimmed();
|
||||||
|
chat_display->append("[Server] " + message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_socket_error(QAbstractSocket::SocketError error) {
|
||||||
|
Q_UNUSED(error);
|
||||||
|
chat_display->append("[Error] " + socket->errorString());
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_ssl_errors(const QList<QSslError> &errors) {
|
||||||
|
// For development: ignore self-signed certificate errors
|
||||||
|
// In production, properly validate certificates
|
||||||
|
for (const QSslError &error : errors) {
|
||||||
|
std::cerr << "SSL Error: " << error.errorString().toStdString() << std::endl;
|
||||||
|
}
|
||||||
|
socket->ignoreSslErrors();
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_send_message() {
|
||||||
|
if (socket->state() != QSslSocket::ConnectedState) {
|
||||||
|
chat_display->append("[System] Not connected!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString message = message_input->text();
|
||||||
|
if (message.isEmpty()) return;
|
||||||
|
|
||||||
|
socket->write(message.toUtf8() + "\n");
|
||||||
|
chat_display->append("[You] " + message);
|
||||||
|
message_input->clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_bg_color() {
|
||||||
|
QColor color = QColorDialog::getColor(bg_color, this, "Select Background Color");
|
||||||
|
if (color.isValid()) {
|
||||||
|
bg_color = color;
|
||||||
|
update_window_colors();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_text_color() {
|
||||||
|
QColor color = QColorDialog::getColor(text_color, this, "Select Text Color");
|
||||||
|
if (color.isValid()) {
|
||||||
|
text_color = color;
|
||||||
|
update_window_colors();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_transparency_changed(int value) {
|
||||||
|
transparency_value->setText(QString::number(value) + "%");
|
||||||
|
double opacity = value / 100.0;
|
||||||
|
setWindowOpacity(opacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
void update_window_colors() {
|
||||||
|
// Update chat display background and text colors
|
||||||
|
QString stylesheet = QString(
|
||||||
|
"QTextEdit { background-color: %1; color: %2; }"
|
||||||
|
"QLineEdit { background-color: %1; color: %2; }"
|
||||||
|
"QPushButton { background-color: %1; color: %2; border: 1px solid gray; padding: 4px; }"
|
||||||
|
"QLabel { color: %2; }"
|
||||||
|
"QSlider { color: %2; }"
|
||||||
|
).arg(bg_color.name()).arg(text_color.name());
|
||||||
|
|
||||||
|
setStyleSheet(stylesheet);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
QLineEdit *host_input;
|
||||||
|
QLineEdit *port_input;
|
||||||
|
QPushButton *connect_btn;
|
||||||
|
QTextEdit *chat_display;
|
||||||
|
QLineEdit *message_input;
|
||||||
|
QPushButton *send_btn;
|
||||||
|
QPushButton *bg_color_btn;
|
||||||
|
QPushButton *text_color_btn;
|
||||||
|
QSlider *transparency_slider;
|
||||||
|
QLabel *transparency_value;
|
||||||
|
QSslSocket *socket;
|
||||||
|
QColor bg_color;
|
||||||
|
QColor text_color;
|
||||||
|
};
|
||||||
|
|
||||||
|
int main(int argc, char *argv[]) {
|
||||||
|
QApplication app(argc, argv);
|
||||||
|
|
||||||
|
ChatClient client;
|
||||||
|
client.show();
|
||||||
|
|
||||||
|
return app.exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "main.moc"
|
||||||
193
src/server/server.cpp
Normal file
193
src/server/server.cpp
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <thread>
|
||||||
|
#include <mutex>
|
||||||
|
#include <vector>
|
||||||
|
#include <memory>
|
||||||
|
#include <cstring>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <openssl/ssl.h>
|
||||||
|
#include <openssl/err.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
|
#define PORT 42317
|
||||||
|
#define MAX_CLIENTS 100
|
||||||
|
#define BUFFER_SIZE 4096
|
||||||
|
|
||||||
|
// Global state for SSL
|
||||||
|
SSL_CTX *ctx = nullptr;
|
||||||
|
std::vector<SSL*> client_sockets;
|
||||||
|
std::mutex clients_mutex;
|
||||||
|
bool server_running = true;
|
||||||
|
|
||||||
|
void handle_sigint(int sig) {
|
||||||
|
(void)sig; // Unused parameter
|
||||||
|
std::cout << "\nShutting down server..." << std::endl;
|
||||||
|
server_running = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void init_openssl() {
|
||||||
|
SSL_library_init();
|
||||||
|
SSL_load_error_strings();
|
||||||
|
OpenSSL_add_all_algorithms();
|
||||||
|
ctx = SSL_CTX_new(TLS_server_method());
|
||||||
|
if (!ctx) {
|
||||||
|
std::cerr << "Failed to create SSL context" << std::endl;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void cleanup_openssl() {
|
||||||
|
if (ctx) SSL_CTX_free(ctx);
|
||||||
|
EVP_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool load_certificates(const char *cert_file, const char *key_file) {
|
||||||
|
if (SSL_CTX_use_certificate_file(ctx, cert_file, SSL_FILETYPE_PEM) <= 0) {
|
||||||
|
std::cerr << "Failed to load certificate" << std::endl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (SSL_CTX_use_PrivateKey_file(ctx, key_file, SSL_FILETYPE_PEM) <= 0) {
|
||||||
|
std::cerr << "Failed to load private key" << std::endl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!SSL_CTX_check_private_key(ctx)) {
|
||||||
|
std::cerr << "Private key does not match certificate" << std::endl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void broadcast_message(const std::string &message, SSL *sender) {
|
||||||
|
std::lock_guard<std::mutex> lock(clients_mutex);
|
||||||
|
for (SSL *client : client_sockets) {
|
||||||
|
if (client != sender) {
|
||||||
|
SSL_write(client, message.c_str(), message.length());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_client(SSL *ssl, int client_socket) {
|
||||||
|
char buffer[BUFFER_SIZE];
|
||||||
|
int bytes;
|
||||||
|
|
||||||
|
std::cout << "Client connected (FD: " << client_socket << ")" << std::endl;
|
||||||
|
|
||||||
|
while (server_running && (bytes = SSL_read(ssl, buffer, sizeof(buffer) - 1)) > 0) {
|
||||||
|
buffer[bytes] = '\0';
|
||||||
|
std::cout << "Received: " << buffer << std::endl;
|
||||||
|
|
||||||
|
// Broadcast message to all other connected clients
|
||||||
|
std::string msg(buffer);
|
||||||
|
broadcast_message(msg, ssl);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
std::lock_guard<std::mutex> lock(clients_mutex);
|
||||||
|
auto it = std::find(client_sockets.begin(), client_sockets.end(), ssl);
|
||||||
|
if (it != client_sockets.end()) {
|
||||||
|
client_sockets.erase(it);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SSL_free(ssl);
|
||||||
|
close(client_socket);
|
||||||
|
std::cout << "Client disconnected" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[]) {
|
||||||
|
if (argc < 3) {
|
||||||
|
std::cerr << "Usage: " << argv[0] << " <cert_file> <key_file>" << std::endl;
|
||||||
|
std::cerr << "Example: " << argv[0] << " certs/server.crt certs/server.key" << std::endl;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
signal(SIGINT, handle_sigint);
|
||||||
|
|
||||||
|
init_openssl();
|
||||||
|
|
||||||
|
if (!load_certificates(argv[1], argv[2])) {
|
||||||
|
cleanup_openssl();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create server socket
|
||||||
|
int server_fd = socket(AF_INET, SOCK_STREAM, 0);
|
||||||
|
if (server_fd < 0) {
|
||||||
|
perror("socket");
|
||||||
|
cleanup_openssl();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int opt = 1;
|
||||||
|
if (setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
|
||||||
|
perror("setsockopt");
|
||||||
|
close(server_fd);
|
||||||
|
cleanup_openssl();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct sockaddr_in server_addr;
|
||||||
|
server_addr.sin_family = AF_INET;
|
||||||
|
server_addr.sin_addr.s_addr = INADDR_ANY;
|
||||||
|
server_addr.sin_port = htons(PORT);
|
||||||
|
|
||||||
|
if (bind(server_fd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
|
||||||
|
perror("bind");
|
||||||
|
close(server_fd);
|
||||||
|
cleanup_openssl();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (listen(server_fd, 5) < 0) {
|
||||||
|
perror("listen");
|
||||||
|
close(server_fd);
|
||||||
|
cleanup_openssl();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "SCAR Chat Server listening on port " << PORT << std::endl;
|
||||||
|
|
||||||
|
while (server_running) {
|
||||||
|
struct sockaddr_in client_addr;
|
||||||
|
socklen_t addr_len = sizeof(client_addr);
|
||||||
|
|
||||||
|
int client_socket = accept(server_fd, (struct sockaddr *)&client_addr, &addr_len);
|
||||||
|
if (client_socket < 0) {
|
||||||
|
if (server_running) {
|
||||||
|
perror("accept");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create SSL connection for this client
|
||||||
|
SSL *ssl = SSL_new(ctx);
|
||||||
|
SSL_set_fd(ssl, client_socket);
|
||||||
|
|
||||||
|
if (SSL_accept(ssl) <= 0) {
|
||||||
|
std::cerr << "SSL_accept failed" << std::endl;
|
||||||
|
ERR_print_errors_fp(stderr);
|
||||||
|
SSL_free(ssl);
|
||||||
|
close(client_socket);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
std::lock_guard<std::mutex> lock(clients_mutex);
|
||||||
|
client_sockets.push_back(ssl);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle client in a separate thread
|
||||||
|
std::thread client_thread(handle_client, ssl, client_socket);
|
||||||
|
client_thread.detach();
|
||||||
|
}
|
||||||
|
|
||||||
|
close(server_fd);
|
||||||
|
cleanup_openssl();
|
||||||
|
std::cout << "Server shutdown complete" << std::endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
233
src/windows_client/main_win.cpp
Normal file
233
src/windows_client/main_win.cpp
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
#include <windows.h>
|
||||||
|
#include <winsock2.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <thread>
|
||||||
|
#include <mutex>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#pragma comment(lib, "ws2_32.lib")
|
||||||
|
#pragma comment(lib, "crypt32.lib")
|
||||||
|
|
||||||
|
#define WINDOW_CLASS L"ScarChatWindowClass"
|
||||||
|
#define WINDOW_TITLE L"SCAR Chat Client (Windows)"
|
||||||
|
#define PORT 42317
|
||||||
|
|
||||||
|
// Global window handles
|
||||||
|
HWND g_main_window = nullptr;
|
||||||
|
HWND g_chat_display = nullptr;
|
||||||
|
HWND g_message_input = nullptr;
|
||||||
|
HWND g_host_input = nullptr;
|
||||||
|
HWND g_port_input = nullptr;
|
||||||
|
HWND g_connect_btn = nullptr;
|
||||||
|
HWND g_send_btn = nullptr;
|
||||||
|
HWND g_bg_color_btn = nullptr;
|
||||||
|
HWND g_text_color_btn = nullptr;
|
||||||
|
HWND g_transparency_slider = nullptr;
|
||||||
|
|
||||||
|
// Connection state
|
||||||
|
SOCKET g_socket = INVALID_SOCKET;
|
||||||
|
bool g_connected = false;
|
||||||
|
std::mutex g_socket_mutex;
|
||||||
|
|
||||||
|
// Color state
|
||||||
|
COLORREF g_bg_color = RGB(255, 255, 255);
|
||||||
|
COLORREF g_text_color = RGB(0, 0, 0);
|
||||||
|
int g_transparency = 100;
|
||||||
|
|
||||||
|
void log_message(const std::string &message) {
|
||||||
|
if (g_chat_display) {
|
||||||
|
SendMessageA(g_chat_display, WM_SETTEXT, 0, (LPARAM)message.c_str());
|
||||||
|
}
|
||||||
|
printf("%s\n", message.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
void connect_to_server(const std::string &host, int port) {
|
||||||
|
std::lock_guard<std::mutex> lock(g_socket_mutex);
|
||||||
|
|
||||||
|
if (g_connected) {
|
||||||
|
closesocket(g_socket);
|
||||||
|
g_connected = false;
|
||||||
|
SetWindowTextA(g_connect_btn, "Connect");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
WSADATA wsa_data;
|
||||||
|
if (WSAStartup(MAKEWORD(2, 2), &wsa_data) != 0) {
|
||||||
|
log_message("[Error] WSAStartup failed");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_socket = socket(AF_INET, SOCK_STREAM, 0);
|
||||||
|
if (g_socket == INVALID_SOCKET) {
|
||||||
|
log_message("[Error] Socket creation failed");
|
||||||
|
WSACleanup();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sockaddr_in server_addr;
|
||||||
|
server_addr.sin_family = AF_INET;
|
||||||
|
server_addr.sin_port = htons(port);
|
||||||
|
server_addr.sin_addr.s_addr = inet_addr(host.c_str());
|
||||||
|
|
||||||
|
if (connect(g_socket, (sockaddr *)&server_addr, sizeof(server_addr)) == SOCKET_ERROR) {
|
||||||
|
log_message("[Error] Connection failed");
|
||||||
|
closesocket(g_socket);
|
||||||
|
WSACleanup();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_connected = true;
|
||||||
|
log_message("[System] Connected to server!");
|
||||||
|
SetWindowTextA(g_connect_btn, "Disconnect");
|
||||||
|
}
|
||||||
|
|
||||||
|
void send_message(const std::string &message) {
|
||||||
|
std::lock_guard<std::mutex> lock(g_socket_mutex);
|
||||||
|
|
||||||
|
if (!g_connected || g_socket == INVALID_SOCKET) {
|
||||||
|
log_message("[Error] Not connected!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (send(g_socket, message.c_str(), message.length(), 0) == SOCKET_ERROR) {
|
||||||
|
log_message("[Error] Send failed");
|
||||||
|
g_connected = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LRESULT CALLBACK WindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) {
|
||||||
|
switch (msg) {
|
||||||
|
case WM_CREATE: {
|
||||||
|
// Create UI elements
|
||||||
|
g_host_input = CreateWindowA("EDIT", "localhost", WS_VISIBLE | WS_CHILD | ES_AUTOHSCROLL,
|
||||||
|
10, 10, 100, 25, hwnd, nullptr, nullptr, nullptr);
|
||||||
|
g_port_input = CreateWindowA("EDIT", "42317", WS_VISIBLE | WS_CHILD | ES_AUTOHSCROLL | ES_NUMBER,
|
||||||
|
115, 10, 60, 25, hwnd, nullptr, nullptr, nullptr);
|
||||||
|
g_connect_btn = CreateWindowA("BUTTON", "Connect", WS_VISIBLE | WS_CHILD,
|
||||||
|
180, 10, 80, 25, hwnd, (HMENU)1, nullptr, nullptr);
|
||||||
|
|
||||||
|
g_chat_display = CreateWindowA("EDIT", "[System] Welcome to SCAR Chat\n",
|
||||||
|
WS_VISIBLE | WS_CHILD | WS_VSCROLL | ES_MULTILINE | ES_READONLY,
|
||||||
|
10, 45, 540, 300, hwnd, nullptr, nullptr, nullptr);
|
||||||
|
|
||||||
|
g_message_input = CreateWindowA("EDIT", "", WS_VISIBLE | WS_CHILD | ES_AUTOHSCROLL,
|
||||||
|
10, 350, 450, 25, hwnd, nullptr, nullptr, nullptr);
|
||||||
|
g_send_btn = CreateWindowA("BUTTON", "Send", WS_VISIBLE | WS_CHILD,
|
||||||
|
465, 350, 85, 25, hwnd, (HMENU)2, nullptr, nullptr);
|
||||||
|
|
||||||
|
g_bg_color_btn = CreateWindowA("BUTTON", "BG Color", WS_VISIBLE | WS_CHILD,
|
||||||
|
10, 380, 80, 25, hwnd, (HMENU)3, nullptr, nullptr);
|
||||||
|
g_text_color_btn = CreateWindowA("BUTTON", "Text Color", WS_VISIBLE | WS_CHILD,
|
||||||
|
95, 380, 80, 25, hwnd, (HMENU)4, nullptr, nullptr);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case WM_COMMAND: {
|
||||||
|
int button_id = LOWORD(wparam);
|
||||||
|
if (button_id == 1) { // Connect button
|
||||||
|
char host[256] = "localhost";
|
||||||
|
char port_str[10] = "42317";
|
||||||
|
GetWindowTextA(g_host_input, host, sizeof(host));
|
||||||
|
GetWindowTextA(g_port_input, port_str, sizeof(port_str));
|
||||||
|
int port = atoi(port_str);
|
||||||
|
|
||||||
|
std::thread conn_thread([host, port]() {
|
||||||
|
connect_to_server(host, port);
|
||||||
|
});
|
||||||
|
conn_thread.detach();
|
||||||
|
} else if (button_id == 2) { // Send button
|
||||||
|
char message[1024] = "";
|
||||||
|
GetWindowTextA(g_message_input, message, sizeof(message));
|
||||||
|
if (strlen(message) > 0) {
|
||||||
|
send_message(message);
|
||||||
|
SetWindowTextA(g_message_input, "");
|
||||||
|
}
|
||||||
|
} else if (button_id == 3) { // BG Color button
|
||||||
|
CHOOSECOLORA cc = {0};
|
||||||
|
static COLORREF custom_colors[16] = {0};
|
||||||
|
cc.lStructSize = sizeof(CHOOSECOLORA);
|
||||||
|
cc.hwndOwner = hwnd;
|
||||||
|
cc.rgbResult = g_bg_color;
|
||||||
|
cc.lpCustColors = custom_colors;
|
||||||
|
cc.Flags = CC_FULLOPEN | CC_RGBINIT;
|
||||||
|
|
||||||
|
if (ChooseColorA(&cc)) {
|
||||||
|
g_bg_color = cc.rgbResult;
|
||||||
|
}
|
||||||
|
} else if (button_id == 4) { // Text Color button
|
||||||
|
CHOOSECOLORA cc = {0};
|
||||||
|
static COLORREF custom_colors[16] = {0};
|
||||||
|
cc.lStructSize = sizeof(CHOOSECOLORA);
|
||||||
|
cc.hwndOwner = hwnd;
|
||||||
|
cc.rgbResult = g_text_color;
|
||||||
|
cc.lpCustColors = custom_colors;
|
||||||
|
cc.Flags = CC_FULLOPEN | CC_RGBINIT;
|
||||||
|
|
||||||
|
if (ChooseColorA(&cc)) {
|
||||||
|
g_text_color = cc.rgbResult;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case WM_DESTROY:
|
||||||
|
std::lock_guard<std::mutex> lock(g_socket_mutex);
|
||||||
|
if (g_socket != INVALID_SOCKET) {
|
||||||
|
closesocket(g_socket);
|
||||||
|
}
|
||||||
|
WSACleanup();
|
||||||
|
PostQuitMessage(0);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case WM_PAINT: {
|
||||||
|
PAINTSTRUCT ps;
|
||||||
|
HDC hdc = BeginPaint(hwnd, &ps);
|
||||||
|
FillRect(hdc, &ps.rcPaint, (HBRUSH)(COLOR_WINDOW + 1));
|
||||||
|
EndPaint(hwnd, &ps);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
return DefWindowProcA(hwnd, msg, wparam, lparam);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hprev, PSTR cmdline, int cmdshow) {
|
||||||
|
// Register window class
|
||||||
|
WNDCLASSA wc = {0};
|
||||||
|
wc.lpfnWndProc = WindowProc;
|
||||||
|
wc.hInstance = hinstance;
|
||||||
|
wc.lpszClassName = (LPCSTR)WINDOW_CLASS;
|
||||||
|
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
||||||
|
|
||||||
|
if (!RegisterClassA(&wc)) {
|
||||||
|
MessageBoxA(nullptr, "Failed to register window class", "Error", MB_OK);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create main window
|
||||||
|
g_main_window = CreateWindowExA(0, (LPCSTR)WINDOW_CLASS, (LPCSTR)WINDOW_TITLE,
|
||||||
|
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT,
|
||||||
|
800, 600, nullptr, nullptr, hinstance, nullptr);
|
||||||
|
|
||||||
|
if (!g_main_window) {
|
||||||
|
MessageBoxA(nullptr, "Failed to create window", "Error", MB_OK);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
ShowWindow(g_main_window, cmdshow);
|
||||||
|
UpdateWindow(g_main_window);
|
||||||
|
|
||||||
|
// Message loop
|
||||||
|
MSG msg = {0};
|
||||||
|
while (GetMessageA(&msg, nullptr, 0, 0)) {
|
||||||
|
TranslateMessage(&msg);
|
||||||
|
DispatchMessageA(&msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (int)msg.wParam;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user