Skip to content

Commit

Permalink
aaaaaand fix cmake again, darnit.
Browse files Browse the repository at this point in the history
  • Loading branch information
coornio committed Aug 30, 2024
1 parent 503748b commit 21d389a
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,19 @@ if(NOT SDL3_FOUND)
endif()

add_executable(CubeChipSDL
src/CubeChip.cpp
src/HostClass/BasicAudioSpec.cpp
src/HostClass/HomeDirManager.cpp
src/HostClass/HostFunctions.cpp
src/HostClass/BasicVideoSpec.cpp
# src/GuestClass/GuestFunctions.cpp
src/GuestClass/GameFileChecker.cpp
src/GuestClass/HexInput.cpp
# src/GuestClass/InstructionSets/_LegacySC.cpp
# src/GuestClass/InstructionSets/_Gigachip.cpp
# src/GuestClass/InstructionSets/_Classic8.cpp
# src/GuestClass/InstructionSets/_ModernXO.cpp
# src/GuestClass/InstructionSets/_Megachip.cpp
src/GuestClass/EmuCores/CHIP8_MODERN.cpp
src/GuestClass/EmuCores/EmuCores.cpp
# src/GuestClass/Init.cpp
src/Assistants/BasicLogger.cpp
src/Assistants/BasicInput.cpp
src/Assistants/FrameLimiter.cpp
src/Assistants/SHA1.cpp
src/HostClass/HomeDirManager.cpp
src/HostClass/BasicVideoSpec.cpp
src/HostClass/BasicAudioSpec.cpp
src/HostClass/EmuHost.cpp
src/GuestClass/HexInput.cpp
src/GuestClass/EmuCores/EmuCores.cpp
src/GuestClass/EmuCores/CHIP8_MODERN.cpp
src/GuestClass/GameFileChecker.cpp
src/CubeChip.cpp
)
target_include_directories(CubeChipSDL PRIVATE src)
target_link_libraries(CubeChipSDL PRIVATE SDL3::SDL3-shared)
Expand Down

0 comments on commit 21d389a

Please sign in to comment.