From 7a63a61ac7d4a3e4a6667055ea55db1c55779a23 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 11 Apr 2025 20:52:19 -0400 Subject: Modify README and CMakeLists from repository split --- CMakeLists.txt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 9daac12..f8ec7be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) set(CMAKE_CXX_COMPILER "g++") -project(risc_vector) +project(ram) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) @@ -16,16 +16,9 @@ include_directories( ${PROJECT_SOURCE_DIR}/inc ) -# add gui -add_subdirectory(gui) - # gather source files file(GLOB_RECURSE SRCS "src/*.cc") -# find QT components -find_package(Qt6 COMPONENTS Widgets REQUIRED) -qt_standard_project_setup() - # binary executable add_library(${PROJECT_NAME}_lib ${SRCS}) target_link_libraries(${PROJECT_NAME}_lib) -- cgit v1.2.3