1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-03 15:09:39 +00:00

Moved mwgui/ back to apps/openmw/. Fixed mouse position bug.

This commit is contained in:
Nicolay Korslund 2010-07-20 20:23:37 +02:00
parent a9825f92ee
commit c61212202b
10 changed files with 18 additions and 19 deletions

View file

@ -50,16 +50,6 @@ source_group(components\\esm_store FILES ${ESM_STORE} ${ESM_STORE_HEADER})
file(GLOB ESM_HEADER ${COMP_DIR}/esm/*.hpp)
source_group(components\\esm FILES ${ESM_HEADER})
# components/mw_gui
set(MWGUI_HEADER
${COMP_DIR}/mwgui/mw_layouts.hpp
${COMP_DIR}/mwgui/window_manager.hpp
)
set(MWGUI
${COMP_DIR}/mwgui/window_manager.cpp
)
source_group(components\\mwgui FILES ${MWGUI_HEADER} ${MWGUI})
set(COMMANDSERVER
${COMP_DIR}/commandserver/command.hpp
${COMP_DIR}/commandserver/server.hpp
@ -85,10 +75,10 @@ file(GLOB INTERPRETER_HEADER ${COMP_DIR}/interpreter/*.hpp)
source_group(components\\interpreter FILES ${INTERPRETER} ${INTERPRETER_HEADER})
set(COMPONENTS ${BSA} ${NIF} ${NIFOGRE} ${ESM_STORE} ${MISC}
${COMMANDSERVER} ${COMPILER} ${INTERPRETER} ${MWGUI})
${COMMANDSERVER} ${COMPILER} ${INTERPRETER})
set(COMPONENTS_HEADER ${BSA_HEADER} ${NIF_HEADER} ${NIFOGRE_HEADER} ${ESM_STORE_HEADER}
${ESM_HEADER} ${MISC_HEADER} ${COMPILER_HEADER}
${INTERPRETER_HEADER} ${MWGUI_HEADER})
${INTERPRETER_HEADER})
# source directory: libs

View file

@ -30,6 +30,15 @@ set(GAMEINPUT_HEADER
mwinput/inputmanager.hpp)
source_group(apps\\openmw\\mwinput FILES ${GAMEINPUT} ${GAMEINPUT_HEADER})
set(GAMEGUI_HEADER
mwgui/mw_layouts.hpp
mwgui/window_manager.hpp
)
set(GAMEGUI
mwgui/window_manager.cpp
)
source_group(apps\\openmw\\mwgui FILES ${GAMEGUI_HEADER} ${GAMEGUI})
set(GAMESCRIPT
mwscript/scriptmanager.cpp
mwscript/compilercontext.cpp
@ -77,9 +86,9 @@ set(GAMEWORLD_HEADER
source_group(apps\\openmw\\mwworld FILES ${GAMEWORLD} ${GAMEWORLD_HEADER})
set(OPENMW_CPP ${GAME} ${GAMEREND} ${GAMEINPUT} ${GAMESCRIPT} ${GAMESOUND} ${GAMEGUI} ${GAMEWORLD})
set(OPENMW_CPP ${GAME} ${GAMEREND} ${GAMEINPUT} ${GAMESCRIPT} ${GAMESOUND} ${GAMEGUI} ${GAMEWORLD} ${GAMEGUI})
set(OPENMW_HEADER ${GAME_HEADER} ${GAMEREND_HEADER} ${GAMEINPUT_HEADER} ${GAMESCRIPT_HEADER}
${GAMESOUND_HEADER} ${GAMEGUI_HEADER} ${GAMEWORLD_HEADER})
${GAMESOUND_HEADER} ${GAMEGUI_HEADER} ${GAMEWORLD_HEADER} ${GAMEGUI_HEADER})
# Main executable
add_executable(openmw

View file

@ -8,7 +8,7 @@
#include <components/bsa/bsa_archive.hpp>
#include <openengine/gui/manager.hpp>
#include <components/mwgui/window_manager.hpp>
#include "mwgui/window_manager.hpp"
#include "mwinput/inputmanager.hpp"

View file

@ -9,7 +9,7 @@
#include <openengine/ogre/mouselook.hpp>
#include <openengine/ogre/renderer.hpp>
#include <components/mwgui/window_manager.hpp>
#include "../mwgui/window_manager.hpp"
#include <mangle/input/servers/ois_driver.hpp>
#include <mangle/input/filters/eventlist.hpp>

View file

@ -7,7 +7,7 @@
#include <components/interpreter/runtime.hpp>
#include <components/interpreter/opcodes.hpp>
#include <components/mwgui/window_manager.hpp>
#include "../mwgui/window_manager.hpp"
#include "interpretercontext.hpp"

View file

@ -9,7 +9,7 @@
#include "../mwworld/world.hpp"
#include <components/mwgui/window_manager.hpp>
#include "../mwgui/window_manager.hpp"
#include "locals.hpp"
#include "globalscripts.hpp"

@ -1 +1 @@
Subproject commit 82a3c071e56f2df451618e1371424c39aa299690
Subproject commit c04d72cbe380217c2d1d60f8a2c6e4810fe4c050