-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfiguration.py
More file actions
39 lines (38 loc) · 1.67 KB
/
configuration.py
File metadata and controls
39 lines (38 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#(C) 2023, 2025 Серый MLGamer. All freedoms preserved.
#Дзен: <https://dzen.ru/seriy_mlgamer>
#SoundCloud: <https://soundcloud.com/seriy_mlgamer>
#YouTube: <https://www.youtube.com/@Seriy_MLGamer>
#GitVerse: <https://gitverse.ru/Seriy_MLGamer>
#E-mail: <Seriy-MLGamer@yandex.ru>
#
#This file is part of Modularis Core.
#Modularis Core is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#Modularis Core is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#You should have received a copy of the GNU General Public License along with Modularis Core. If not, see <https://www.gnu.org/licenses/>.
#Target operating system and architecture signature.
#Possible values:
# * host - for host system default signature;
# * GNU/Linux:
# - x86_64-linux-gnu;
# - i686-linux-gnu;
# - i386-linux-gnu;
# - aarch64-linux-gnu;
# - arm-linux-gnueabihf;
# - arm-linux-gnueabi;
# * Windows:
# - x86_64-w64-mingw32;
# - i686-w64-mingw32;
# - aarch64-w64-mingw32.
BUILD_TARGET="host"
#Target type of package MakePy will create from build.
#Possible values:
# * host - for host system default package type (tar.gz for GNU and zip for Windows);
# * tar.gz;
# * tar.bz2;
# * tar.xz;
# * tar;
# * zip;
# * deb.
PACKAGE_TYPE="host"
GNU_INSTALLATION_FOLDER="/usr/local"
WINDOWS_INSTALLATION_FOLDER="C:/Program Files/Modularis Core"