updated project
This commit is contained in:
parent
de042a580c
commit
b49579f5bc
4 changed files with 68 additions and 9 deletions
|
|
@ -1,3 +1,23 @@
|
||||||
|
/*
|
||||||
|
Crafter.Build
|
||||||
|
Copyright (C) 2025 Catcrafts®
|
||||||
|
Catcrafts.net
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3.0 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
module;
|
module;
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,23 @@
|
||||||
|
/*
|
||||||
|
Crafter.Build
|
||||||
|
Copyright (C) 2025 Catcrafts®
|
||||||
|
Catcrafts.net
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3.0 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
module;
|
module;
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,23 @@
|
||||||
|
/*
|
||||||
|
Crafter.Build
|
||||||
|
Copyright (C) 2025 Catcrafts®
|
||||||
|
Catcrafts.net
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3.0 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
export module Crafter.Component;
|
export module Crafter.Component;
|
||||||
|
|
||||||
export import :Component;
|
export import :Component;
|
||||||
|
|
|
||||||
17
project.json
17
project.json
|
|
@ -7,30 +7,29 @@
|
||||||
"source_files": ["Crafter.Component-Component"],
|
"source_files": ["Crafter.Component-Component"],
|
||||||
"module_files": ["Crafter.Component","Crafter.Component-ComponentRef","Crafter.Component-Component"],
|
"module_files": ["Crafter.Component","Crafter.Component-ComponentRef","Crafter.Component-Component"],
|
||||||
"additional_files": [],
|
"additional_files": [],
|
||||||
"build_dir": "./build",
|
"build_dir": "build",
|
||||||
"output_dir": "./bin",
|
"output_dir": "bin",
|
||||||
"type":"library"
|
"type":"library"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "debug",
|
"name": "lib-debug",
|
||||||
"extends": ["base"],
|
"extends": ["base"],
|
||||||
"optimization_level": "0",
|
|
||||||
"debug":true,
|
"debug":true,
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
{
|
{
|
||||||
"path":"/home/jorijn/repos/Crafter/Crafter.Event/project.json",
|
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Event.git",
|
||||||
"configuration":"debug"
|
"configuration":"lib-debug"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "release",
|
"name": "lib-release",
|
||||||
"extends": ["base"],
|
"extends": ["base"],
|
||||||
"optimization_level": "3",
|
"optimization_level": "3",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
{
|
{
|
||||||
"path":"/home/jorijn/repos/Crafter/Crafter.Event/project.json",
|
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Event.git",
|
||||||
"configuration":"debug"
|
"configuration":"lib-release"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue