aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-10-21 09:28:35 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-10-24 19:00:58 +0200
commitb948b76c8ea5ec57b6a424baa1b117c0025c0328 (patch)
tree2708d134a5caf9652822052f0629a7a9f43d3efe /3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb
parent169b42da4a1064f28776ee80eaa7449facaf200b (diff)
downloadnextpnr-b948b76c8ea5ec57b6a424baa1b117c0025c0328.tar.gz
nextpnr-b948b76c8ea5ec57b6a424baa1b117c0025c0328.tar.bz2
nextpnr-b948b76c8ea5ec57b6a424baa1b117c0025c0328.zip
add imgui library
Diffstat (limited to '3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb')
-rw-r--r--3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb46
1 files changed, 46 insertions, 0 deletions
diff --git a/3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb b/3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb
new file mode 100644
index 00000000..34315b9a
--- /dev/null
+++ b/3rdparty/imgui/examples/example_marmalade/marmalade_example.mkb
@@ -0,0 +1,46 @@
+#!/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
+{
+ ..
+ ../..
+}
+
+subprojects
+{
+ iwgx
+}
+
+files
+{
+ (.)
+ ["imgui"]
+ ../../imgui.cpp
+ ../../imgui_demo.cpp
+ ../../imgui_draw.cpp
+ ../../imgui_widgets.cpp
+ ../../imconfig.h
+ ../../imgui.h
+ ../../imgui_internal.h
+
+ ["imgui","Marmalade binding"]
+ ../imgui_impl_marmalade.h
+ ../imgui_impl_marmalade.cpp
+ main.cpp
+
+}