Add premake submodule

This commit is contained in:
Guilherme Werner
2023-12-16 09:23:39 -03:00
parent 06e7d628e7
commit 99ced22285
10 changed files with 12 additions and 30 deletions

4
.gitmodules vendored
View File

@ -1,3 +1,7 @@
[submodule "vendor/Mintaka"] [submodule "vendor/Mintaka"]
path = vendor/Mintaka path = vendor/Mintaka
url = https://github.com/Tribufu/Mintaka url = https://github.com/Tribufu/Mintaka
[submodule "vendor/premake-core"]
path = vendor/premake-core
url = https://github.com/TribufuForks/premake-core
branch = vendor

View File

@ -1,5 +1,7 @@
#!/usr/bin/env pwsh #!/usr/bin/env pwsh
git submodule update --init --recursive
if ($IsWindows) if ($IsWindows)
{ {
} }

View File

@ -1,5 +1,7 @@
#!/usr/bin/env sh #!/usr/bin/env sh
git submodule update --init --recursive
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ] if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then then

View File

@ -1,3 +1,3 @@
@echo off @echo off
call .\vendor\premake\windows\premake5.exe vs2022 call .\vendor\premake-core\windows\premake5.exe vs2022

View File

@ -2,9 +2,9 @@
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ] if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then then
./vendor/premake/linux/premake5 gmake2 ./vendor/premake-core/linux/premake5 gmake2
elif [ "$(uname)" = "Darwin" ] elif [ "$(uname)" = "Darwin" ]
then then
./vendor/premake/mac/premake5 xcode4 ./vendor/premake-core/mac/premake5 xcode4
fi fi

1
vendor/premake-core vendored Submodule

Submodule vendor/premake-core added at 4bd56019c4

View File

@ -1,27 +0,0 @@
Copyright (c) 2003-2019 Jason Perkins and individual contributors.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of Premake nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Binary file not shown.

Binary file not shown.

Binary file not shown.