diff options
author | chai <chaifix@163.com> | 2021-12-13 00:07:19 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-12-13 00:07:19 +0800 |
commit | 60cbbdec07ab7a5636eac5b3c024ae44e937f4d4 (patch) | |
tree | b2c7b0a868f18159dbc43d8954e1bd7668549a88 /Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb |
+init
Diffstat (limited to 'Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb')
-rw-r--r-- | Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb b/Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb new file mode 100644 index 0000000..4e765f1 --- /dev/null +++ b/Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb @@ -0,0 +1,47 @@ +#!/usr/bin/env mkb + +# ImGui - standalone example application for Marmalade +# Copyright (C) 2015 by Giovanni Zito +# This file is part of ImGui +# https://github.com/ocornut/imgui + +define IMGUI_DISABLE_INCLUDE_IMCONFIG_H +define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS +define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS +define _snprintf=snprintf + +options +{ + optimise-speed=1 +} + +includepaths +{ + ../.. + ../../backends +} + +subprojects +{ + iwgx +} + +files +{ + (.) + ["imgui"] + ../../imgui.cpp + ../../imgui_demo.cpp + ../../imgui_draw.cpp + ../../imgui_tables.cpp + ../../imgui_widgets.cpp + ../../imconfig.h + ../../imgui.h + ../../imgui_internal.h + + ["imgui","Marmalade backend"] + ../../backends/imgui_impl_marmalade.h + ../../backends/imgui_impl_marmalade.cpp + main.cpp + +} |