Tests 1/2

This commit is contained in:
2025-11-23 02:06:57 +05:30
commit d1b1ba12c0
36 changed files with 3785 additions and 0 deletions

26
Tools/Builder/Build.py Normal file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# IACore-OSS; The Core Library for All IA Open Source Projects
# Copyright (C) 20245IAS (ias@iasoft.dev)
#
# This program 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.
#
# This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
import os
import sys
def main(args: list[str]):
os.system("cmake -S. -B./Build/Linux -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -DIA_BUILD_TESTS=ON")
os.system("cmake --build ./Build/Linux")
main(sys.argv)