From 21d389ab501a681719a0cc58bb983b21996b7ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3=CF=84=CE=AD=CF=86=CE=B1=CE=BD=CE=BF=CF=82=20=22Coor?= =?UTF-8?q?nio/8924th=22=20=CE=92=CE=BB=CE=B1=CF=83=CF=84=CF=8C=CF=82?= <8924th@gmail.com> Date: Fri, 30 Aug 2024 23:52:05 +0300 Subject: [PATCH] aaaaaand fix cmake again, darnit. --- CMakeLists.txt | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 793cb11..317d250 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)