mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-28 06:59:46 -06:00
Move imgui file to its own folder
This commit is contained in:
Submodule ext/ghoul updated: fd9674595b...8e787753ab
@@ -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 {
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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>
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user