diff --git a/vendor/premake5/ninja/.github/dependabot.yml b/vendor/premake5/ninja/.github/dependabot.yml deleted file mode 100644 index d80af56..0000000 --- a/vendor/premake5/ninja/.github/dependabot.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Keep GitHub Actions up to date with GitHub's Dependabot... dependabot.yml -# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot -# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - groups: - github-actions: - patterns: - - "*" # Group all Actions updates into a single larger pull request - schedule: - interval: weekly diff --git a/vendor/premake5/ninja/.github/workflows/macos.yml b/vendor/premake5/ninja/.github/workflows/macos.yml deleted file mode 100644 index 3d768de..0000000 --- a/vendor/premake5/ninja/.github/workflows/macos.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: macos - -on: - workflow_dispatch: - push: - paths: - - '.github/workflows/macos.yml' - - 'tests/**' - - '**/*.lua' - - pull_request: - paths: - - '.github/workflows/macos.yml' - - 'tests/**' - - '**/*.lua' - -jobs: - macos: - runs-on: macos-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - uses: mymindstorm/setup-emsdk@v14 - - - name: install premake5 - uses: Jarod42/install-premake5@v6 - - - name: install ninja - uses: seanmiddleditch/gha-setup-ninja@v6 - - - name: Versions - run: | - python --version - premake5 --version - ninja --version - - - name: test projects - run: cd tests && python run_tests.py - diff --git a/vendor/premake5/ninja/.github/workflows/ubuntu.yml b/vendor/premake5/ninja/.github/workflows/ubuntu.yml deleted file mode 100644 index a658e5c..0000000 --- a/vendor/premake5/ninja/.github/workflows/ubuntu.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: ubuntu - -on: - workflow_dispatch: - push: - paths: - - '.github/workflows/ubuntu.yml' - - 'tests/**' - - '**/*.lua' - - pull_request: - paths: - - '.github/workflows/ubuntu.yml' - - 'tests/**' - - '**/*.lua' - -jobs: - ubuntu: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - uses: mymindstorm/setup-emsdk@v14 - - - name: install premake5 - uses: Jarod42/install-premake5@v6 - - - name: apt-get update - run: sudo apt-get update -y - - - name: apt-get install ninja-build - run: | - sudo apt-get install -y ninja-build - - - name: Versions - run: | - python --version - premake5 --version - ninja --version - - - name: test projects - run: cd tests && python run_tests.py - diff --git a/vendor/premake5/ninja/.github/workflows/windows.yml b/vendor/premake5/ninja/.github/workflows/windows.yml deleted file mode 100644 index 7ca4b7a..0000000 --- a/vendor/premake5/ninja/.github/workflows/windows.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: windows - -on: - workflow_dispatch: - push: - paths: - - '.github/workflows/windows.yml' - - 'tests/**' - - '**/*.lua' - - pull_request: - paths: - - '.github/workflows/windows.yml' - - 'tests/**' - - '**/*.lua' - -jobs: - windows: - runs-on: windows-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - uses: mymindstorm/setup-emsdk@v14 - - - name: install premake5 - uses: Jarod42/install-premake5@v6 - - - name: install ninja - uses: seanmiddleditch/gha-setup-ninja@v6 - - - name: Versions - run: | - python --version - premake5 --version - ninja --version - - - name: Add cl.exe to PATH - uses: ilammy/msvc-dev-cmd@v1 - - - name: test projects - run: cd tests && python run_tests.py - shell: bash diff --git a/vendor/premake5/ninja/tests/console_app/includepath/main.cpp b/vendor/premake5/ninja/tests/console_app/includepath/main.cpp deleted file mode 100644 index 7e050fa..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include "test1.h" -#include "test2.h" - -int main() -{ - printf("hello world !\n"); - test1(); - test2(); - return 0; -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/includepath/premake5.lua b/vendor/premake5/ninja/tests/console_app/includepath/premake5.lua deleted file mode 100644 index da58659..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/premake5.lua +++ /dev/null @@ -1,22 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj" - kind "ConsoleApp" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"**.cpp", "**.c", "**.h"} - includedirs {"test1", "test2"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.c b/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.c deleted file mode 100644 index cb8dc1b..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.h b/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.h deleted file mode 100644 index 8e3f361..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/test1/test1.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test1(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.cpp b/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.cpp deleted file mode 100644 index 56ba9c9..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test2.h" -#include - -void test2() -{ - printf("hello from test2 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.h b/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.h deleted file mode 100644 index f43be8f..0000000 --- a/vendor/premake5/ninja/tests/console_app/includepath/test2/test2.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -void test2(); \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/simple/main.cpp b/vendor/premake5/ninja/tests/console_app/simple/main.cpp deleted file mode 100644 index 8664e36..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include -#include "test1.h" -#include "test2.h" -#include "test 3.h" - -int main() -{ - printf("hello world !\n"); - test1(); - test2(); - test3(); - return 0; -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/simple/premake5.lua b/vendor/premake5/ninja/tests/console_app/simple/premake5.lua deleted file mode 100644 index f2c6edb..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/premake5.lua +++ /dev/null @@ -1,21 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj" - kind "ConsoleApp" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"**.cpp", "**.c", "**.h"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/console_app/simple/test 3.c b/vendor/premake5/ninja/tests/console_app/simple/test 3.c deleted file mode 100644 index f59b780..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test 3.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test 3.h" -#include - -void test3() -{ - printf("hello from test3 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/simple/test 3.h b/vendor/premake5/ninja/tests/console_app/simple/test 3.h deleted file mode 100644 index 65794a7..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test 3.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test3(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/console_app/simple/test1.c b/vendor/premake5/ninja/tests/console_app/simple/test1.c deleted file mode 100644 index cb8dc1b..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/simple/test1.h b/vendor/premake5/ninja/tests/console_app/simple/test1.h deleted file mode 100644 index 8e3f361..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test1.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test1(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/console_app/simple/test2.cpp b/vendor/premake5/ninja/tests/console_app/simple/test2.cpp deleted file mode 100644 index 56ba9c9..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test2.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test2.h" -#include - -void test2() -{ - printf("hello from test2 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/console_app/simple/test2.h b/vendor/premake5/ninja/tests/console_app/simple/test2.h deleted file mode 100644 index f43be8f..0000000 --- a/vendor/premake5/ninja/tests/console_app/simple/test2.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -void test2(); \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/run_tests.py b/vendor/premake5/ninja/tests/run_tests.py deleted file mode 100644 index 47ef726..0000000 --- a/vendor/premake5/ninja/tests/run_tests.py +++ /dev/null @@ -1,270 +0,0 @@ -# unittests for premake-ninja - -import os -import sys -import time -import shutil -import platform -import unittest -import subprocess - -# we are changing working directory often in this tests, so let's save current one -current_cwd = os.getcwd() - -# if set, will override compiler name when premake is executed -override_compiler = None - -# finds the file in path -def which(cmd, mode = os.F_OK | os.X_OK, path = None): - if sys.version_info[0:2] >= (3, 3): - return shutil.which(cmd, mode, path) - else: - def _access_check(fn, mode): - return (os.path.exists(fn) and os.access(fn, mode) - and not os.path.isdir(fn)) - - if os.path.dirname(cmd): - if _access_check(cmd, mode): - return cmd - return None - - if path is None: - path = os.environ.get("PATH", os.defpath) - if not path: - return None - path = path.split(os.pathsep) - - if sys.platform == "win32": - if not os.curdir in path: - path.insert(0, os.curdir) - pathext = os.environ.get("PATHEXT", "").split(os.pathsep) - if any(cmd.lower().endswith(ext.lower()) for ext in pathext): - files = [cmd] - else: - files = [cmd + ext for ext in pathext] - else: - files = [cmd] - - seen = set() - for dir in path: - normdir = os.path.normcase(dir) - if not normdir in seen: - seen.add(normdir) - for thefile in files: - name = os.path.join(dir, thefile) - if _access_check(name, mode): - return name - return None - -# ----------------------------------------------------- helper class -class Helper(unittest.TestCase): - # removes build directory in test folder - def clear(self, build_dir): - if os.path.exists(build_dir): - shutil.rmtree(build_dir) - - # enters test, and clears it - def enter_test(self, test, build_dir = "build"): - self.build_dir = build_dir - os.chdir(current_cwd) # if previous test failed then we need to restore cwd - os.chdir(test) - self.clear(build_dir) - - # clears test and exit from it - def exit_test(self, build_dir = "build"): - # for some reason call/check_call are not waiting for executable to completely finish - # so let's wait a bit so we can remove folder safely - time.sleep(0.3) - self.clear(build_dir) - os.chdir(current_cwd) - - # call premake in the test - def premake(self): - if override_compiler: - args = ["premake5", "--scripts=../../..", "--cc=" + override_compiler, "ninja"] - if override_compiler == "emcc": - args += ["--os=emscripten"] - self.assertEqual(subprocess.call(args), 0, "looks like premake failed") - else: - self.assertEqual(subprocess.call(["premake5", "--scripts=../../..", "ninja"]), 0, "looks like premake failed") - - # call ninja in the test - def ninja(self, target = None): - args = ["ninja", "-C", "build"] - if target is not None: - args.append(target) - self.assertEqual(subprocess.call(args), 0, "looks like ninja failed") - - # get out name with ext and prefix - def out_name(self, path, ext = None, prefix = None): - if (ext == None) and (prefix == None): - return path - base_path = os.path.dirname(path) - base_name_and_ext = os.path.splitext(os.path.basename(path)) - if prefix == None: - prefix = "" - if ext == None: - ext = base_name_and_ext[1] - return base_path + "/" + prefix + base_name_and_ext[0] + ext - - # check if executable exist - def out_exist(self, path): - print(f"Looking for {path} in {os.listdir(os.path.dirname(path))}") - sys.stdout.flush() - self.assertTrue( - os.path.exists(path) or - os.path.exists(self.out_name(path, ".exe")) or - os.path.exists(self.out_name(path, ".app")) or - os.path.exists(self.out_name(path, ".lib")) or - os.path.exists(self.out_name(path, ".a", "lib")) or - os.path.exists(self.out_name(path, ".dll")) or - os.path.exists(self.out_name(path, ".so", "lib")) or - os.path.exists(self.out_name(path, ".dylib", "lib")) or - os.path.exists(self.out_name(path, ".wasm")) - ) - print(f"Found {path}") - sys.stdout.flush() - # check if executable doesn't exist - def out_not_exist(self, path): - self.assertFalse( - os.path.exists(path) or - os.path.exists(self.out_name(path, ".exe")) or - os.path.exists(self.out_name(path, ".app")) or - os.path.exists(self.out_name(path, ".lib")) or - os.path.exists(self.out_name(path, ".a", "lib")) or - os.path.exists(self.out_name(path, ".dll")) or - os.path.exists(self.out_name(path, ".so", "lib")) or - os.path.exists(self.out_name(path, ".dylib", "lib")) or - os.path.exists(self.out_name(path, ".wasm")) - ) - - # check if executable exist - def exe(self, path): - if os.path.exists(path): - current_cwd = os.getcwd() - os.chdir(self.build_dir) - executable = os.path.relpath(path, self.build_dir) - subprocess.check_call([executable], env={'LD_LIBRARY_PATH': os.path.dirname(executable), 'DYLD_LIBRARY_PATH': os.path.dirname(executable)}) - os.chdir(current_cwd) - elif os.path.exists(path + ".exe"): - subprocess.check_call([path + ".exe"]) - elif os.path.exists(path + ".app"): - subprocess.check_call([path + ".app"]) - elif os.path.exists(self.out_name(path, ".lib")) or os.path.exists(self.out_name(path, ".a", "lib")) or os.path.exists(self.out_name(path, ".dll")) or os.path.exists(self.out_name(path, ".so", "lib")) or os.path.exists(self.out_name(path, ".dylib", "lib")): - pass - else: - self.assertTrue(False, "executable '" + path + "' doesn't exist") - - # check basic flow, run debug and release executables - def check_basics(self, out_debug, out_release, build_dir = "build"): - # build dir should not exist before premake is called - self.assertFalse(os.path.exists(build_dir)) - - # call premake - # build dir should exist afterwards, but executables shouldn't - self.premake() - self.assertTrue(os.path.exists(build_dir)) - self.out_not_exist(out_debug) - self.out_not_exist(out_release) - - # call ninja, by default ninja should build debug target - # so debug executable should exist, and release shouldn't - self.ninja() - self.out_exist(out_debug) - self.out_not_exist(out_release) - - # let's build debug target explicitly, and still release executable shouldn't exist - self.ninja("debug") - self.out_exist(out_debug) - self.out_not_exist(out_release) - - # let's build release target explicitly, all basic executables should exist now - self.ninja("release") - self.out_exist(out_debug) - self.out_exist(out_release) - - # run executables to check if they are valid - if override_compiler != "emcc": - self.exe(out_debug) - self.exe(out_release) - -# ----------------------------------------------------- console app tests -class TestConsoleApp(Helper): - # test simple app - def test_simple(self): - self.enter_test("console_app/simple") - self.check_basics("build/bin_debug/ninjatestprj", "build/bin_release/ninjatestprj") - self.exit_test() - - # test include path app - def test_include_path(self): - self.enter_test("console_app/includepath") - self.check_basics("build/bin_debug/ninjatestprj", "build/bin_release/ninjatestprj") - self.exit_test() - -# ----------------------------------------------------- static lib tests -class TestStaticLib(Helper): - # test simple app - def test_simple(self): - self.enter_test("static_lib/simple") - self.check_basics("build/bin_debug/ninjatestprj", "build/bin_release/ninjatestprj") - self.exit_test() - - # test static lib with app - def test_withapp(self): - self.enter_test("static_lib/withapp") - self.check_basics("build/bin_debug/ninjatestprj_app", "build/bin_release/ninjatestprj_app") - self.out_exist("build/bin_debug/ninjatestprj_lib test1") - self.out_exist("build/bin_release/ninjatestprj_lib test1") - self.out_exist("build/bin_debug/ninjatestprj_lib_test2") - self.out_exist("build/bin_release/ninjatestprj_lib_test2") - self.exit_test() - -# ----------------------------------------------------- shared lib tests -class TestSharedLib(Helper): - # test simple app - def test_simple(self): - # Skip shared library tests on Emscripten since this is an advanced feature not supported by Premake yet. - if override_compiler == "emcc": - return - self.enter_test("shared_lib/simple") - self.check_basics("build/bin_debug/ninjatestprj", "build/bin_release/ninjatestprj") - self.exit_test() - - # test shared lib with app - def test_withapp(self): - # Skip shared library tests on Emscripten since this is an advanced feature not supported by Premake yet. - if override_compiler == "emcc": - return - self.enter_test("shared_lib/withapp") - self.check_basics("build/bin_debug/ninjatestprj_app", "build/bin_release/ninjatestprj_app") - self.out_exist("build/bin_debug/ninjatestprj_lib_test1") - self.out_exist("build/bin_release/ninjatestprj_lib_test1") - self.out_exist("build/bin_debug/ninjatestprj_lib_test2") - self.out_exist("build/bin_release/ninjatestprj_lib_test2") - self.exit_test() - -# ----------------------------------------------------- windowed app tests -class TestWindowedApp(Helper): - # test simple app - def test_simple(self): - self.enter_test("windowed_app/simple") - self.check_basics("build/bin_debug/ninjatestprj", "build/bin_release/ninjatestprj") - self.exit_test() - -# ----------------------------------------------------- entry point -if __name__ == "__main__": - print("-------------------------- test default setup") - r = unittest.main(exit = False) - if not r.result.wasSuccessful(): - sys.exit(1) - - if platform.system() == "Windows" and which("gcc"): - print("-------------------------- found gcc on windows") - override_compiler = "gcc" - unittest.main() - - if which("emcc"): - print("-------------------------- found emcc") - override_compiler = "emcc" - unittest.main() diff --git a/vendor/premake5/ninja/tests/shared_lib/simple/premake5.lua b/vendor/premake5/ninja/tests/shared_lib/simple/premake5.lua deleted file mode 100644 index e4e91c6..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/simple/premake5.lua +++ /dev/null @@ -1,22 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj" - kind "SharedLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"**.cpp", "**.c", "**.h"} - defines {"DLL_EXPORT"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/shared_lib/simple/test1.cpp b/vendor/premake5/ninja/tests/shared_lib/simple/test1.cpp deleted file mode 100644 index 69c0200..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/simple/test1.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -TESTLIB void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/shared_lib/simple/test1.h b/vendor/premake5/ninja/tests/shared_lib/simple/test1.h deleted file mode 100644 index 913e032..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/simple/test1.h +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once - -#ifdef _WIN32 - #ifdef DLL_EXPORT - #define TESTLIB __declspec(dllexport) - #else - #define TESTLIB __declspec(dllimport) - #endif -#else - #define TESTLIB -#endif - -TESTLIB void test1(); diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/main.cpp b/vendor/premake5/ninja/tests/shared_lib/withapp/main.cpp deleted file mode 100644 index 7e050fa..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include "test1.h" -#include "test2.h" - -int main() -{ - printf("hello world !\n"); - test1(); - test2(); - return 0; -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/premake5.lua b/vendor/premake5/ninja/tests/shared_lib/withapp/premake5.lua deleted file mode 100644 index 507802c..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/premake5.lua +++ /dev/null @@ -1,59 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj_app" - kind "ConsoleApp" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"main.cpp"} - includedirs {"test1", "test2"} - links {"ninjatestprj_lib_test1", "ninjatestprj_lib_test2"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" - -project "ninjatestprj_lib_test1" - kind "SharedLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"test1/**.cpp", "test1/**.c", "test1/**.h"} - includedirs {"test1"} - defines {"DLL_EXPORT"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" - -project "ninjatestprj_lib_test2" - kind "SharedLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"test2/**.cpp", "test2/**.c", "test2/**.h"} - includedirs {"test2"} - defines {"DLL_EXPORT2"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.cpp b/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.cpp deleted file mode 100644 index 69c0200..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -TESTLIB void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.h b/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.h deleted file mode 100644 index 913e032..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/test1/test1.h +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once - -#ifdef _WIN32 - #ifdef DLL_EXPORT - #define TESTLIB __declspec(dllexport) - #else - #define TESTLIB __declspec(dllimport) - #endif -#else - #define TESTLIB -#endif - -TESTLIB void test1(); diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.cpp b/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.cpp deleted file mode 100644 index edb7a6c..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test2.h" -#include - -TESTLIB2 void test2() -{ - printf("hello from test2 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.h b/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.h deleted file mode 100644 index af7340f..0000000 --- a/vendor/premake5/ninja/tests/shared_lib/withapp/test2/test2.h +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once - -#ifdef _WIN32 - #ifdef DLL_EXPORT2 - #define TESTLIB2 __declspec(dllexport) - #else - #define TESTLIB2 __declspec(dllimport) - #endif -#else - #define TESTLIB2 -#endif - -TESTLIB2 void test2(); \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/static_lib/simple/premake5.lua b/vendor/premake5/ninja/tests/static_lib/simple/premake5.lua deleted file mode 100644 index 32d66d2..0000000 --- a/vendor/premake5/ninja/tests/static_lib/simple/premake5.lua +++ /dev/null @@ -1,21 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj" - kind "StaticLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"**.cpp", "**.c", "**.h"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/static_lib/simple/test1.c b/vendor/premake5/ninja/tests/static_lib/simple/test1.c deleted file mode 100644 index cb8dc1b..0000000 --- a/vendor/premake5/ninja/tests/static_lib/simple/test1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/static_lib/simple/test1.h b/vendor/premake5/ninja/tests/static_lib/simple/test1.h deleted file mode 100644 index 8e3f361..0000000 --- a/vendor/premake5/ninja/tests/static_lib/simple/test1.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test1(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/main.cpp b/vendor/premake5/ninja/tests/static_lib/withapp/main.cpp deleted file mode 100644 index 7e050fa..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include "test1.h" -#include "test2.h" - -int main() -{ - printf("hello world !\n"); - test1(); - test2(); - return 0; -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/premake5.lua b/vendor/premake5/ninja/tests/static_lib/withapp/premake5.lua deleted file mode 100644 index df4fe4a..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/premake5.lua +++ /dev/null @@ -1,64 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj_app" - kind "ConsoleApp" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"main.cpp"} - includedirs {"test1", "test2"} - links {"ninjatestprj_lib test1", "ninjatestprj_lib_test2"} - - filter {"system:windows"} - links { "user32", "gdi32" } - - filter {"system:linux"} - links { "pthread" } - -- todo add system libs for os x and linux - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" - -project "ninjatestprj_lib test1" - kind "StaticLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"test1/**.cpp", "test1/**.c", "test1/**.h"} - includedirs {"test1"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" - -project "ninjatestprj_lib_test2" - kind "StaticLib" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"test2/**.cpp", "test2/**.c", "test2/**.h"} - includedirs {"test2"} - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.c b/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.c deleted file mode 100644 index cb8dc1b..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.h b/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.h deleted file mode 100644 index 8e3f361..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/test1/test1.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test1(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.cpp b/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.cpp deleted file mode 100644 index 56ba9c9..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test2.h" -#include - -void test2() -{ - printf("hello from test2 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.h b/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.h deleted file mode 100644 index f43be8f..0000000 --- a/vendor/premake5/ninja/tests/static_lib/withapp/test2/test2.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -void test2(); \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/main.cpp b/vendor/premake5/ninja/tests/windowed_app/simple/main.cpp deleted file mode 100644 index ddcfdcf..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/main.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include -#include "test1.h" -#include "test2.h" - -#ifdef _WIN32 -#include -int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR lpCmdLine, INT nCmdShow) -#else -int main() -#endif -{ - printf("hello world !\n"); - test1(); - test2(); - return 0; -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/premake5.lua b/vendor/premake5/ninja/tests/windowed_app/simple/premake5.lua deleted file mode 100644 index 7af6497..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/premake5.lua +++ /dev/null @@ -1,24 +0,0 @@ -require "ninja" - -solution "ninjatestsln" - location "build" - configurations {"debug", "release"} - -project "ninjatestprj" - kind "WindowedApp" - location "build" - language "C++" - targetdir "build/bin_%{cfg.buildcfg}" - - files {"**.cpp", "**.c", "**.h"} - - filter "system:windows" - entrypoint "WinMainCRTStartup" - - filter "configurations:debug" - defines {"DEBUG"} - symbols "On" - - filter "configurations:release" - defines {"NDEBUG"} - optimize "On" diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/test1.c b/vendor/premake5/ninja/tests/windowed_app/simple/test1.c deleted file mode 100644 index cb8dc1b..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/test1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "test1.h" -#include - -void test1() -{ - printf("hello from test1 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/test1.h b/vendor/premake5/ninja/tests/windowed_app/simple/test1.h deleted file mode 100644 index 8e3f361..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/test1.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -void test1(); - -#ifdef __cplusplus -} -#endif diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/test2.cpp b/vendor/premake5/ninja/tests/windowed_app/simple/test2.cpp deleted file mode 100644 index 56ba9c9..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/test2.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "test2.h" -#include - -void test2() -{ - printf("hello from test2 !\n"); -} \ No newline at end of file diff --git a/vendor/premake5/ninja/tests/windowed_app/simple/test2.h b/vendor/premake5/ninja/tests/windowed_app/simple/test2.h deleted file mode 100644 index f43be8f..0000000 --- a/vendor/premake5/ninja/tests/windowed_app/simple/test2.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -void test2(); \ No newline at end of file