From 65753ac8d192af45fb64cb445064afce3dc00ca8 Mon Sep 17 00:00:00 2001 From: Tony Di Nucci Date: Wed, 27 Mar 2019 00:20:18 +0000 Subject: [PATCH] Remove file refs that were added by CLion --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af5f4e5..5dd10f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src file(GLOB_RECURSE test_src "test/**.h" "test/**.cpp" "src/**.h" "src/**.cpp") list(FILTER test_src EXCLUDE REGEX ".*/6502-emulator/src/main.cpp$") -add_executable(6502_emulator_test ${test_src} test/machine-test.cpp test/flags-opcode-handler-test.cpp) +add_executable(6502_emulator_test ${test_src}) target_link_libraries(6502_emulator_test gtest_main) add_test(NAME run_tests COMMAND 6502_emulator_test)