mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-28 14:23:18 +00:00
imgui elfviewer window . first draft
This commit is contained in:
parent
f35f7b62cd
commit
dda7020ef4
5 changed files with 83 additions and 1 deletions
|
@ -2,6 +2,10 @@ cmake_minimum_required(VERSION 3.16.3)
|
|||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Release)
|
||||
endif()
|
||||
|
||||
project(shadps4)
|
||||
|
||||
include_directories(third-party/)
|
||||
|
@ -21,7 +25,8 @@ add_executable(shadps4
|
|||
src/Core/FsFile.h
|
||||
src/Loader/Elf.cpp
|
||||
src/Loader/Elf.h
|
||||
)
|
||||
src/GUI/ElfViewer.cpp
|
||||
src/GUI/ElfViewer.h)
|
||||
|
||||
find_package(OpenGL REQUIRED)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue