fixed missing path

This commit is contained in:
Màrius Montón 2021-11-25 23:25:52 +01:00
parent 7409f9c07a
commit 8d658e8151
No known key found for this signature in database
GPG Key ID: FA199E7A752699F0
1 changed files with 2 additions and 4 deletions

View File

@ -8,14 +8,14 @@
cmake_minimum_required(VERSION 3.1)
project(RISCV_TLM)
# specify the C++ standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CMAKE_C_STANDARD 17)
set(CMAKE_CXX_EXTENSIONS OFF)
#add_compile_options(-Wall -I. -O3 -std=c++17 -g -Wextra -Wunused-function -Wpedantic)
set(CMAKE_PREFIX_PATH systemc/systemc-2.3.3/objdir/)
add_compile_options(-O3 -g -Wall -Wextra -Wunused-function -Wpedantic)
include_directories(./inc/)
@ -44,5 +44,3 @@ else (DOXYGEN_FOUND)
message("Doxygen need to be installed to generate the doxygen documentation")
endif (DOXYGEN_FOUND)