From 43fcb635bd763e95dc5aefdc50fd33d7ff3f2d09 Mon Sep 17 00:00:00 2001 From: Karsten Suehring <karsten.suehring@hhi.fraunhofer.de> Date: Thu, 25 Oct 2018 18:41:15 +0200 Subject: [PATCH] remove compile options that disable BMS macros --- CMakeLists.txt | 1 - Makefile | 4 ---- source/App/DecoderAnalyserApp/CMakeLists.txt | 4 ---- source/App/DecoderApp/CMakeLists.txt | 5 ----- source/App/EncoderApp/CMakeLists.txt | 4 ---- source/Lib/CommonAnalyserLib/CMakeLists.txt | 4 ---- source/Lib/CommonLib/CMakeLists.txt | 4 ---- source/Lib/DecoderAnalyserLib/CMakeLists.txt | 4 ---- source/Lib/DecoderLib/CMakeLists.txt | 4 ---- source/Lib/EncoderLib/CMakeLists.txt | 4 ---- source/Lib/Utilities/CMakeLists.txt | 4 ---- 11 files changed, 42 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f341203e4..2d59e741e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,6 @@ endif() set( EXTENSION_360_VIDEO OFF CACHE BOOL "If EXTENSION_360_VIDEO is on, 360Lib will be added" ) set( SET_ENABLE_TRACING OFF CACHE BOOL "Set ENABLE_TRACING as a compiler flag" ) set( ENABLE_TRACING OFF CACHE BOOL "If SET_ENABLE_TRACING is on, it will be set to this value" ) -set( ENABLE_VTM OFF CACHE BOOL "If ENABLE_VTM is on, the software will be compiled as VTM" ) if( CMAKE_COMPILER_IS_GNUCC ) set( BUILD_STATIC OFF CACHE BOOL "Build static executables" ) diff --git a/Makefile b/Makefile index 49169a7be..b1d03c555 100644 --- a/Makefile +++ b/Makefile @@ -63,10 +63,6 @@ ifneq ($(verbose),) CMAKE_OPTIONS += -DCMAKE_VERBOSE_MAKEFILE=ON endif -ifneq ($(enable-vtm),) -CMAKE_OPTIONS += -DENABLE_VTM=ON -endif - ifneq ($(enable-tracing),) CONFIG_OPTIONS += -DSET_ENABLE_TRACING=ON -DENABLE_TRACING=$(enable-tracing) endif diff --git a/source/App/DecoderAnalyserApp/CMakeLists.txt b/source/App/DecoderAnalyserApp/CMakeLists.txt index f6b036a19..ad272ca1f 100644 --- a/source/App/DecoderAnalyserApp/CMakeLists.txt +++ b/source/App/DecoderAnalyserApp/CMakeLists.txt @@ -27,10 +27,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) target_compile_definitions( ${EXE_NAME} PUBLIC RExt__DECODER_DEBUG_BIT_STATISTICS=1 ) target_compile_definitions( ${EXE_NAME} PUBLIC RExt__DECODER_DEBUG_TOOL_STATISTICS=1 ) -if( ENABLE_VTM ) - target_compile_definitions( ${EXE_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( SET_ENABLE_TRACING ) if( ENABLE_TRACING ) target_compile_definitions( ${EXE_NAME} PUBLIC ENABLE_TRACING=1 ) diff --git a/source/App/DecoderApp/CMakeLists.txt b/source/App/DecoderApp/CMakeLists.txt index 0e36d288f..4e71c5c1e 100644 --- a/source/App/DecoderApp/CMakeLists.txt +++ b/source/App/DecoderApp/CMakeLists.txt @@ -25,11 +25,6 @@ endif() add_executable( ${EXE_NAME} ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) include_directories(${CMAKE_CURRENT_BINARY_DIR}) -if( ENABLE_VTM ) - target_compile_definitions( ${EXE_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - - if( SET_ENABLE_TRACING ) if( ENABLE_TRACING ) target_compile_definitions( ${EXE_NAME} PUBLIC ENABLE_TRACING=1 ) diff --git a/source/App/EncoderApp/CMakeLists.txt b/source/App/EncoderApp/CMakeLists.txt index d4b240ea6..2299bcf8f 100644 --- a/source/App/EncoderApp/CMakeLists.txt +++ b/source/App/EncoderApp/CMakeLists.txt @@ -27,10 +27,6 @@ endif() add_executable( ${EXE_NAME} ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) include_directories(${CMAKE_CURRENT_BINARY_DIR}) -if( ENABLE_VTM ) - target_compile_definitions( ${EXE_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( SET_ENABLE_TRACING ) if( ENABLE_TRACING ) target_compile_definitions( ${EXE_NAME} PUBLIC ENABLE_TRACING=1 ) diff --git a/source/Lib/CommonAnalyserLib/CMakeLists.txt b/source/Lib/CommonAnalyserLib/CMakeLists.txt index e0cdf5fa1..e8b16075b 100644 --- a/source/Lib/CommonAnalyserLib/CMakeLists.txt +++ b/source/Lib/CommonAnalyserLib/CMakeLists.txt @@ -48,10 +48,6 @@ set( INC_FILES ${BASE_INC_FILES} ${X86_INC_FILES} ${MD5_INC_FILES} ) add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) target_compile_definitions( ${LIB_NAME} PUBLIC RExt__DECODER_DEBUG_TOOL_STATISTICS=1 ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() diff --git a/source/Lib/CommonLib/CMakeLists.txt b/source/Lib/CommonLib/CMakeLists.txt index 7a91672c0..54bba996e 100644 --- a/source/Lib/CommonLib/CMakeLists.txt +++ b/source/Lib/CommonLib/CMakeLists.txt @@ -47,10 +47,6 @@ set( INC_FILES ${BASE_INC_FILES} ${X86_INC_FILES} ${MD5_INC_FILES} ) # library add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() diff --git a/source/Lib/DecoderAnalyserLib/CMakeLists.txt b/source/Lib/DecoderAnalyserLib/CMakeLists.txt index 9b0017617..4fbd3463e 100644 --- a/source/Lib/DecoderAnalyserLib/CMakeLists.txt +++ b/source/Lib/DecoderAnalyserLib/CMakeLists.txt @@ -17,10 +17,6 @@ add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) target_compile_definitions( ${LIB_NAME} PUBLIC RExt__DECODER_DEBUG_BIT_STATISTICS=1 ) target_compile_definitions( ${LIB_NAME} PUBLIC RExt__DECODER_DEBUG_TOOL_STATISTICS=1 ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() diff --git a/source/Lib/DecoderLib/CMakeLists.txt b/source/Lib/DecoderLib/CMakeLists.txt index 62413e900..23a3659a1 100644 --- a/source/Lib/DecoderLib/CMakeLists.txt +++ b/source/Lib/DecoderLib/CMakeLists.txt @@ -16,10 +16,6 @@ endif() add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) target_compile_definitions( ${LIB_NAME} PUBLIC ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() diff --git a/source/Lib/EncoderLib/CMakeLists.txt b/source/Lib/EncoderLib/CMakeLists.txt index 9e75e9fb1..89286b308 100644 --- a/source/Lib/EncoderLib/CMakeLists.txt +++ b/source/Lib/EncoderLib/CMakeLists.txt @@ -16,10 +16,6 @@ endif() add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) target_compile_definitions( ${LIB_NAME} PUBLIC ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() diff --git a/source/Lib/Utilities/CMakeLists.txt b/source/Lib/Utilities/CMakeLists.txt index 0b0464411..2b3e74242 100644 --- a/source/Lib/Utilities/CMakeLists.txt +++ b/source/Lib/Utilities/CMakeLists.txt @@ -16,10 +16,6 @@ endif() add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} ${NATVIS_FILES} ) target_compile_definitions( ${LIB_NAME} PUBLIC ) -if( ENABLE_VTM ) - target_compile_definitions( ${LIB_NAME} PUBLIC BMS_TOOLS=0 ) -endif() - if( EXTENSION_360_VIDEO ) target_compile_definitions( ${LIB_NAME} PUBLIC EXTENSION_360_VIDEO=1 ) endif() -- GitLab