diff --git a/capture/CMakeLists.txt b/capture/CMakeLists.txt index 5384789f..0fa03f97 100644 --- a/capture/CMakeLists.txt +++ b/capture/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) option(NO_ISA_EXTENSIONS "Disable ISA extensions (don't pass -march=native or -mcpu=native to the compiler)" OFF) -option(NO_STATISTICS "Disable calculation of statistics" ON) +set(NO_STATISTICS ON) include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake) diff --git a/import/CMakeLists.txt b/import/CMakeLists.txt index 5c88a712..58d96204 100644 --- a/import/CMakeLists.txt +++ b/import/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) option(NO_ISA_EXTENSIONS "Disable ISA extensions (don't pass -march=native or -mcpu=native to the compiler)" OFF) -option(NO_STATISTICS "Disable calculation of statistics" ON) +set(NO_STATISTICS ON) include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake) diff --git a/merge/CMakeLists.txt b/merge/CMakeLists.txt index cf32843e..b5fac838 100644 --- a/merge/CMakeLists.txt +++ b/merge/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) option(NO_ISA_EXTENSIONS "Disable ISA extensions (don't pass -march=native or -mcpu=native to the compiler)" OFF) -option(NO_STATISTICS "Disable calculation of statistics" OFF) # we need those to get processed source zone locations +set(NO_STATISTICS OFF) # we need those to get processed source zone locations include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake)