summaryrefslogtreecommitdiff
path: root/Client/ThirdParty/imgui/examples/example_marmalade/marmalade_example.mkb
blob: 4e765f16af9467173be8699d603ac5d185827e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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

}