From 7b24d00ef1b1ddc3f3c1ca66639827388de58fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20S=C5=82abo=C5=84?= Date: Wed, 15 Apr 2020 12:37:21 +0200 Subject: [PATCH] [FREELDR][INSTALL][FDEBUG] Include FreeLDR tools in LiveCD and HybridCD (#2550) It might be useful to have them on LiveCD/HybridCD as well. --- boot/freeldr/fdebug/CMakeLists.txt | 2 +- boot/freeldr/install/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/freeldr/fdebug/CMakeLists.txt b/boot/freeldr/fdebug/CMakeLists.txt index 61d94d8b785..ad446182f13 100644 --- a/boot/freeldr/fdebug/CMakeLists.txt +++ b/boot/freeldr/fdebug/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(fdebug fdebug.c rs232.c fdebug.rc) set_module_type(fdebug win32gui UNICODE) add_importlibs(fdebug comdlg32 user32 gdi32 msvcrt kernel32) -add_cd_file(TARGET fdebug DESTINATION loader NO_CAB FOR bootcd) +add_cd_file(TARGET fdebug DESTINATION loader NO_CAB NOT_IN_HYBRIDCD FOR bootcd livecd hybridcd) diff --git a/boot/freeldr/install/CMakeLists.txt b/boot/freeldr/install/CMakeLists.txt index ed106f2a97d..67d2d8d51cd 100644 --- a/boot/freeldr/install/CMakeLists.txt +++ b/boot/freeldr/install/CMakeLists.txt @@ -21,4 +21,4 @@ add_executable(installfreeldr EXCLUDE_FROM_ALL set_module_type(installfreeldr win32cui) add_importlibs(installfreeldr msvcrt kernel32) -add_cd_file(TARGET installfreeldr DESTINATION loader NO_CAB FOR bootcd) +add_cd_file(TARGET installfreeldr DESTINATION loader NO_CAB NOT_IN_HYBRIDCD FOR bootcd livecd hybridcd)