Move imgui file to its own folder

This commit is contained in:
Alexander Bock
2014-12-18 17:21:20 +01:00
parent e45813dd91
commit 55a3c43db4
7 changed files with 11 additions and 6 deletions

View File

@@ -29,7 +29,7 @@
#include <openspace/interaction/luaconsole.h>
#include <openspace/rendering/renderengine.h>
#include <openspace/engine/configurationmanager.h>
#include <openspace/engine/gui.h>
#include <openspace/gui/gui.h>
#include <ghoul/cmdparser/commandlineparser.h>
namespace openspace {

View File

@@ -46,6 +46,12 @@ file(GLOB ENGINE_HEADER ${HEADER_ROOT_DIR}/openspace/engine/*.h)
set(OPENSPACE_HEADER ${OPENSPACE_HEADER} ${ENGINE_HEADER})
source_group(Engine FILES ${ENGINE_SOURCE} ${ENGINE_HEADER})
file(GLOB GUI_SOURCE ${SOURCE_ROOT_DIR}/gui/*.cpp)
set(OPENSPACE_SOURCE ${OPENSPACE_SOURCE} ${GUI_SOURCE})
file(GLOB GUI_HEADER ${HEADER_ROOT_DIR}/openspace/gui/*.h)
set(OPENSPACE_HEADER ${OPENSPACE_HEADER} ${GUI_HEADER})
source_group(GUI FILES ${GUI_SOURCE} ${GUI_HEADER})
file(GLOB INTERACTION_SOURCE ${SOURCE_ROOT_DIR}/interaction/*.cpp)
set(OPENSPACE_SOURCE ${OPENSPACE_SOURCE} ${INTERACTION_SOURCE})
file(GLOB INTERACTION_HEADER ${HEADER_ROOT_DIR}/openspace/interaction/*.h)

View File

@@ -22,7 +22,7 @@
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
****************************************************************************************/
#include <openspace/engine/gui.h>
#include <openspace/gui/gui.h>
#include <openspace/engine/openspaceengine.h>
#include <openspace/properties/property.h>

View File

@@ -31,7 +31,7 @@
#include <openspace/query/query.h>
#include <openspace/util/time.h>
#include <openspace/abuffer/abuffer.h>
#include <openspace/engine/gui.h>
#include <openspace/gui/gui.h>
#include "ghoul/logging/logmanager.h"
#include "ghoul/opengl/programobject.h"

View File

@@ -118,8 +118,7 @@ SpiceManager::KernelIdentifier SpiceManager::loadKernel(const std::string& fileP
if (hasError)
return KernelFailed;
else {
KernelInformation&& info = { path, std::move(kernelId) };
_loadedKernels.push_back(info);
_loadedKernels.push_back({ path, std::move(kernelId) });
return kernelId;
}
}