Skip to content

Commit a91fd0f

Browse files
committed
reorg
1 parent 09c3cba commit a91fd0f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+37
-105736
lines changed

3rdparty/imgui/imconfig.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
#pragma once
1515

16-
#include <mahi/Color.hpp>
17-
#include <mahi/Vec2.hpp>
16+
#include <mahi/gui/Color.hpp>
17+
#include <mahi/gui/Vec2.hpp>
1818

1919
//---- Define assertion handler. Defaults to calling assert().
2020
//#define IM_ASSERT(_EXPR) MyAssert(_EXPR)

CMakeLists.txt

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
11
cmake_minimum_required(VERSION 3.13.0)
22

3+
#===============================================================================
4+
# USER OPTIONS
5+
#===============================================================================
6+
37
option(MAHI_GUI_EXAMPLES "Turn ON to build mahi-gui example(s)" ON)
48
option(MAHI_GUI_COROUTINES "Turn ON to build experimental coroutine support" ON)
59

10+
#===============================================================================
11+
# FRONT MATTER
12+
#===============================================================================
13+
614
# create project
715
project(mahi_gui VERSION 1.0.0)
16+
17+
# tell user they can't have shared version of MEL if they try
18+
if (BUILD_SHARED_LIBS)
19+
message(FATAL_ERROR "MEL does not yet support shared libaries")
20+
endif()
21+
822
# add modules
923
list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake)
1024
include(GNUInstallDirs)
1125

26+
# Enable IDE folders and set them for predefined CMake projects
27+
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
28+
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "CMake")
29+
1230
# create target and add an alias
1331
add_library(mahi_gui "")
1432
add_library(mahi::gui ALIAS mahi_gui)
@@ -26,7 +44,7 @@ if(MAHI_GUI_COROUTINES)
2644
endif()
2745

2846
# add source files
29-
add_subdirectory(src/mahi)
47+
add_subdirectory(src/mahi/gui)
3048

3149
# add include files
3250
file(GLOB_RECURSE MAHI_GUI_INCLUDE "include/*.hpp" "include/*.inl" "include/*.h")

imgui.ini

-12
This file was deleted.

include/mahi/Application.hpp

-109
This file was deleted.

0 commit comments

Comments
 (0)