Dynarec + CMake restructure
This commit is contained in:
4
src/frontend/CMakeLists.txt
Normal file
4
src/frontend/CMakeLists.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
file(GLOB SOURCES *.cpp)
|
||||
file(GLOB HEADERS *.hpp)
|
||||
|
||||
add_library(frontend ${SOURCES} ${HEADERS})
|
||||
4
src/frontend/imgui/CMakeLists.txt
Normal file
4
src/frontend/imgui/CMakeLists.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
file(GLOB SOURCES *.cpp)
|
||||
file(GLOB HEADERS *.hpp)
|
||||
|
||||
add_library(frontend-imgui ${SOURCES} ${HEADERS})
|
||||
@@ -1,13 +1,13 @@
|
||||
#pragma once
|
||||
#include <parallel-rdp/ParallelRDPWrapper.hpp>
|
||||
#include <ParallelRDPWrapper.hpp>
|
||||
#include <imgui.h>
|
||||
#include <imgui_impl_sdl.h>
|
||||
#include <imgui_impl_vulkan.h>
|
||||
#include <SDL.h>
|
||||
#include <Core.hpp>
|
||||
#include <SDL2/SDL.h>
|
||||
#include <backend/Core.hpp>
|
||||
#include <vector>
|
||||
#include <Settings.hpp>
|
||||
#include <GameList.hpp>
|
||||
#include <frontend/imgui/Settings.hpp>
|
||||
#include <frontend/imgui/GameList.hpp>
|
||||
|
||||
struct DrawData {
|
||||
ImDrawData* first;
|
||||
|
||||
Reference in New Issue
Block a user