Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ target_compile_definitions(Aurora PUBLIC GLSLANG_COMPILER=1)
if(WIN32)
target_link_libraries(Aurora PRIVATE opengl32 gdi32)
endif()
if(UNIX)
target_link_libraries(Aurora PRIVATE GL)
endif()

target_link_libraries(Aurora PUBLIC glad glfw glm nlohmann_json TracyClient ImGui TracyClient assimp stb_utils)
target_link_libraries(Aurora PUBLIC RmlCore RmlDebugger)
Expand Down
2 changes: 1 addition & 1 deletion lib/glfw
Submodule glfw updated 126 files
5 changes: 4 additions & 1 deletion lib/imgui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ target_link_libraries(ImGui glfw glad)

if(WIN32)
target_link_libraries(ImGui gdi32 opengl32 imm32)
endif()
endif()
if(UNIX)
target_link_libraries(ImGui GL)
endif()
8 changes: 6 additions & 2 deletions src/Aurora/App/ISystemWindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@

#include "CursorMode.hpp"

#include "Input/IManager.hpp"

namespace Aurora
{
namespace Input
{
class IManager;
typedef std::shared_ptr<IManager> IManager_ptr;
}

struct WindowDefinition
{
int Width;
Expand Down
6 changes: 0 additions & 6 deletions src/Aurora/App/Input/Binding.cpp

This file was deleted.

78 changes: 0 additions & 78 deletions src/Aurora/App/Input/Binding.hpp

This file was deleted.

Loading