2018-03-27 20:52:14 +02:00
|
|
|
cmake_minimum_required(VERSION 3.3)
|
2018-04-27 19:35:45 +02:00
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_MODULE_PATH}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sc-components/cmake
|
|
|
|
)
|
2017-10-04 15:56:03 +02:00
|
|
|
|
2018-03-27 20:52:14 +02:00
|
|
|
include(GitFunctions)
|
2017-10-04 15:56:03 +02:00
|
|
|
get_branch_from_git()
|
2017-09-17 15:06:10 +02:00
|
|
|
|
|
|
|
### set the directory names of the submodules
|
2017-10-04 15:56:03 +02:00
|
|
|
set(GIT_SUBMODULES sc-components)
|
2017-09-17 15:06:10 +02:00
|
|
|
set(GIT_SUBMODULE_DIR_sc-components .)
|
|
|
|
### set each submodules's commit or tag that is to be checked out
|
|
|
|
### (leave empty if you want master)
|
2017-10-04 15:24:44 +02:00
|
|
|
#set(GIT_SUBMODULE_VERSION_sc-components 3af6b9836589b082c19d9131c5d0b7afa8ddd7cd)
|
2017-10-04 15:56:03 +02:00
|
|
|
set(GIT_SUBMODULE_BRANCH_sc-components ${GIT_BRANCH})
|
2017-09-17 15:06:10 +02:00
|
|
|
|
|
|
|
include(GNUInstallDirs)
|
2018-03-27 20:52:14 +02:00
|
|
|
include(Submodules)
|
|
|
|
include(Conan)
|
2017-09-17 15:06:10 +02:00
|
|
|
|
|
|
|
#enable_testing()
|
|
|
|
|
2018-03-27 20:52:14 +02:00
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
2017-09-17 15:06:10 +02:00
|
|
|
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
set(warnings "-Wall -Wextra -Werror")
|
|
|
|
set(CMAKE_CXX_FLAG_RELEASE "-O2 -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAG_RELEASE "-O2 -DNDEBUG")
|
|
|
|
set(CMAKE_CXX_FLAG_DEBUG "-Og")
|
|
|
|
set(CMAKE_C_FLAG_DEBUG "-Og")
|
|
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
set(warnings "/W4 /WX /EHsc")
|
|
|
|
endif()
|
|
|
|
|
2018-03-27 20:52:14 +02:00
|
|
|
setup_conan()
|
|
|
|
|
2017-09-18 07:30:54 +02:00
|
|
|
# This line finds the boost lib and headers.
|
|
|
|
set(Boost_NO_BOOST_CMAKE ON) # Don't do a find_package in config mode before searching for a regular boost install.
|
2018-09-14 19:28:36 +02:00
|
|
|
find_package(Boost COMPONENTS program_options filesystem system thread REQUIRED)
|
2017-09-18 07:30:54 +02:00
|
|
|
|
|
|
|
# set-up SystemC and SCV
|
|
|
|
find_package(SystemC)
|
|
|
|
if(SystemC_FOUND)
|
|
|
|
add_definitions(-DWITH_SYSTEMC)
|
|
|
|
include_directories(${SystemC_INCLUDE_DIRS})
|
2018-03-27 20:52:14 +02:00
|
|
|
link_directories(${SystemC_LIBRARY_DIRS})
|
2017-09-18 07:30:54 +02:00
|
|
|
else()
|
|
|
|
message( FATAL_ERROR "SystemC library not found." )
|
|
|
|
endif()
|
|
|
|
|
2018-03-27 20:52:14 +02:00
|
|
|
if(CCI_FOUND)
|
|
|
|
include_directories(${CCI_INCLUDE_DIRS})
|
|
|
|
link_directories(${CCI_LIBRARY_DIRS})
|
|
|
|
else()
|
|
|
|
message( FATAL_ERROR "SystemC CCI library not found." )
|
|
|
|
endif()
|
|
|
|
|
2017-09-18 07:30:54 +02:00
|
|
|
if(SCV_FOUND)
|
|
|
|
add_definitions(-DWITH_SCV)
|
|
|
|
link_directories(${SCV_LIBRARY_DIRS})
|
2018-03-27 20:52:14 +02:00
|
|
|
endif()
|
2017-09-18 07:30:54 +02:00
|
|
|
|
2017-09-25 22:00:46 +02:00
|
|
|
set(PROJECT_3PARTY_DIRS external sr_report sr_signal)
|
|
|
|
include(sc-components/cmake/clang-format.cmake)
|
2017-09-18 07:30:54 +02:00
|
|
|
|
2017-09-17 15:06:10 +02:00
|
|
|
add_subdirectory(sc-components)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
#add_subdirectory(test)
|
2017-09-18 07:30:54 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# SYSTEM PACKAGING (RPM, TGZ, ...)
|
|
|
|
# _____________________________________________________________________________
|
|
|
|
|
|
|
|
#include(CPackConfig)
|
|
|
|
|
|
|
|
#
|
|
|
|
# CMAKE PACKAGING (for other CMake projects to use this one easily)
|
|
|
|
# _____________________________________________________________________________
|
|
|
|
|
|
|
|
#include(PackageConfigurator)
|
|
|
|
|