summarylogtreecommitdiffstats
path: root/build-x264-x265-status-message-add-empty-lines.patch
blob: 5c2e18cb77ae6c7ec973f5424f638e5619b329ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
diff --git a/avidemux_plugins/ADM_videoEncoder/x264/CMakeLists.txt b/avidemux_plugins/ADM_videoEncoder/x264/CMakeLists.txt
index d5ab816..2532eee 100644
--- a/avidemux_plugins/ADM_videoEncoder/x264/CMakeLists.txt
+++ b/avidemux_plugins/ADM_videoEncoder/x264/CMakeLists.txt
@@ -12,6 +12,7 @@ include(admCheckX264)
 checkX264()
 IF(USE_X264)
   MESSAGE(STATUS "x264 plugin activated.")
+  MESSAGE("")
   INCLUDE_DIRECTORIES(${X264_INCLUDE_DIR})
 
   #-----------------------QT4 VERSION---------------------
diff --git a/avidemux_plugins/ADM_videoEncoder/x265/CMakeLists.txt b/avidemux_plugins/ADM_videoEncoder/x265/CMakeLists.txt
index 6ff2a8f..eddcd2f 100644
--- a/avidemux_plugins/ADM_videoEncoder/x265/CMakeLists.txt
+++ b/avidemux_plugins/ADM_videoEncoder/x265/CMakeLists.txt
@@ -12,6 +12,7 @@ include(admCheckX265)
 checkX265()
 IF(USE_X265)
   MESSAGE(STATUS "x265 plugin activated.")
+  MESSAGE("")
   INCLUDE_DIRECTORIES(${X265_INCLUDE_DIR})
 
   #-----------------------QT4 VERSION---------------------
@@ -44,5 +45,6 @@ IF(USE_X265)
   endif(DO_SETTINGS)
 ELSE(USE_X265)
   MESSAGE(STATUS "x265 disabled.")
+  MESSAGE("")
 ENDIF(USE_X265)
 
diff --git a/cmake/admCheckX264.cmake b/cmake/admCheckX264.cmake
index 10b7333..09a46f1 100644
--- a/cmake/admCheckX264.cmake
+++ b/cmake/admCheckX264.cmake
@@ -38,7 +38,6 @@ MACRO(checkX264)
 
 		SET(X264_CHECKED 1)
 
-		MESSAGE("")
 	ENDIF (NOT X264_CHECKED)
 
 	APPEND_SUMMARY_LIST("Video Encoder" "x264" "${USE_X264}")
diff --git a/cmake/admCheckX265.cmake b/cmake/admCheckX265.cmake
index 06c0314..5346f4b 100644
--- a/cmake/admCheckX265.cmake
+++ b/cmake/admCheckX265.cmake
@@ -40,7 +40,6 @@ MACRO(checkX265)
 
 		SET(X265_CHECKED 1)
 
-		MESSAGE("")
 	ENDIF (NOT X265_CHECKED)
 
 	APPEND_SUMMARY_LIST("Video Encoder" "x265" "${USE_X265}")