From e8fd5143bcc23e7375365401dbc8ea1f72e69d73 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Tue, 31 May 2022 11:05:26 +0200 Subject: [PATCH] fix build options for standalone ISS --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 25d1883..4d34d34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -121,6 +121,7 @@ project(tgc-sim) find_package(Boost COMPONENTS program_options thread REQUIRED) add_executable(${PROJECT_NAME} src/main.cpp) +FILE(GLOB TGC_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src-gen/iss/arch/*.cpp) foreach(F IN LISTS TGC_SOURCES) string(REGEX REPLACE ".*/([^/]*)\.cpp" "\\1" CORE_NAME_LC ${F}) string(TOUPPER ${CORE_NAME_LC} CORE_NAME)