load files from command line
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
project(GBpp)
|
||||
project(GameBoy++)
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
find_package(SDL2 REQUIRED)
|
||||
include_directories(${SDL2_INCLUDE_DIRS})
|
||||
|
||||
add_executable(GBpp src/main.cpp
|
||||
add_executable(GameBoy++ src/main.cpp
|
||||
src/gameboy.cpp
|
||||
src/opcodeResolver.cpp
|
||||
src/interupts.cpp
|
||||
@@ -18,4 +18,4 @@ add_executable(GBpp src/main.cpp
|
||||
src/testing.hpp
|
||||
src/joypad.cpp
|
||||
)
|
||||
target_link_libraries(GBpp ${SDL2_LIBRARIES})
|
||||
target_link_libraries(GameBoy++ ${SDL2_LIBRARIES})
|
||||
Reference in New Issue
Block a user