marmalade_example.mkb (806B)
1 #!/usr/bin/env mkb 2 3 # ImGui - standalone example application for Marmalade 4 # Copyright (C) 2015 by Giovanni Zito 5 # This file is part of ImGui 6 # https://github.com/ocornut/imgui 7 8 define IMGUI_DISABLE_INCLUDE_IMCONFIG_H 9 define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS 10 define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS 11 define _snprintf=snprintf 12 13 options 14 { 15 optimise-speed=1 16 } 17 18 includepaths 19 { 20 ../.. 21 ../../backends 22 } 23 24 subprojects 25 { 26 iwgx 27 } 28 29 files 30 { 31 (.) 32 ["imgui"] 33 ../../imgui.cpp 34 ../../imgui_demo.cpp 35 ../../imgui_draw.cpp 36 ../../imgui_tables.cpp 37 ../../imgui_widgets.cpp 38 ../../imconfig.h 39 ../../imgui.h 40 ../../imgui_internal.h 41 42 ["imgui","Marmalade backend"] 43 ../../backends/imgui_impl_marmalade.h 44 ../../backends/imgui_impl_marmalade.cpp 45 main.cpp 46 47 }