Replace tabs with whitespaces.

This commit is contained in:
Lukas Steiner
2023-05-25 16:09:55 +02:00
parent b3955d6d02
commit 20f6aae787
18 changed files with 98 additions and 108 deletions

View File

@@ -30,6 +30,7 @@
#
# Authors:
# Thomas Psota
# Lukas Steiner
###############################################
### DRAMSys ###
@@ -110,9 +111,9 @@ add_subdirectory(${DRAMSYS_LIBRARY_DIR}/sqlite3)
### GoogleTest ###
if(DRAMSYS_BUILD_TESTS)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest
GIT_TAG release-1.12.1)
googletest
GIT_REPOSITORY https://github.com/google/googletest
GIT_TAG release-1.12.1)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
@@ -123,23 +124,12 @@ if(DRAMSYS_BUILD_TESTS)
set_target_properties(gtest_main PROPERTIES FOLDER lib/gtest)
endif()
### sqlite-amalgamation ###
# FetchContent_Declare(
# sqlite-amalgamation
# GIT_REPOSITORY https://github.com/azadkuh/sqlite-amalgamation.git
# GIT_TAG 3.38.2)
#
# set(SQLITE_ENABLE_RTREE ON CACHE BOOL "Enable R-Tree Feature")
# FetchContent_MakeAvailable(sqlite-amalgamation)
# set_target_properties(SQLite3 PROPERTIES FOLDER lib)
# add_library(sqlite::sqlite3 ALIAS SQLite3)
### SystemC ###
list(APPEND CMAKE_PREFIX_PATH $ENV{SYSTEMC_HOME} /opt/systemc/)
FetchContent_Declare(
systemc
GIT_REPOSITORY https://github.com/accellera-official/systemc.git
GIT_TAG 2.3.4
systemc
GIT_REPOSITORY https://github.com/accellera-official/systemc.git
GIT_TAG 2.3.4
FIND_PACKAGE_ARGS NAMES SystemCLanguage)
set(DISABLE_COPYRIGHT_MESSAGE True)
@@ -165,7 +155,7 @@ add_subdirectory(src/configuration)
add_subdirectory(src/libdramsys)
if(DRAMSYS_BUILD_CLI)
add_subdirectory(src/simulator)
add_subdirectory(src/simulator)
endif()
if(DRAMSYS_ENABLE_EXTENSIONS)
@@ -177,7 +167,7 @@ endif()
###############################################
if(DRAMSYS_BUILD_TESTS)
include( GoogleTest )
include( CTest )
include(GoogleTest)
include(CTest)
add_subdirectory(tests)
endif()