1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-06 09:17:07 +02:00

Add license header

This commit is contained in:
Elias Steurer 2023-11-01 12:33:19 +01:00
parent 33c222da5d
commit 5e3807286d
11 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,4 @@
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
#include "ScreenPlayGodotWallpaper.h"
#include "godot_cpp/classes/display_server.hpp"
#include "godot_cpp/classes/global_constants.hpp"

View File

@ -1,5 +1,4 @@
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
#pragma once
#ifndef NOMINMAX

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
#include "WindowsPipe.h"
bool WindowsPipe::connectToPipe()

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
#pragma once
#include <iostream>

View File

@ -1,4 +1,4 @@
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
# python -m pip install pywin32
import win32pipe
import win32file

View File

@ -1,3 +1,5 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
class BuildConfig:
root_path: str
cmake_osx_architectures: str

View File

@ -1,4 +1,5 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
import os
import util
import shutil

View File

@ -1,7 +1,7 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
from pathlib import Path
class BuildResult:
# Windows example with absolute paths:
# [...]/build-x64-windows-release/

View File

@ -1,4 +1,5 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
import os
import subprocess
import argparse

View File

@ -1,3 +1,5 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
import hashlib
import os
from pathlib import Path

View File

@ -1,8 +1,9 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
import requests
import zipfile
import platform
from pathlib import Path
# Assuming defines.py exists and has GODOT_VERSION
from defines import GODOT_VERSION
from util import repo_root_path # Assuming util.py exists and has repo_root_path()