From dd11f4c34b66a6fe8229127d03e01f33024e1b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 9 Dec 2018 00:04:37 +0100 Subject: [PATCH] [FREELDR] Add FreeLdr debug tool GUI program, and FreeLdr command-line installer to the bootcd. --- boot/freeldr/fdebug/CMakeLists.txt | 1 + boot/freeldr/install/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/boot/freeldr/fdebug/CMakeLists.txt b/boot/freeldr/fdebug/CMakeLists.txt index 6fed62842fb..61d94d8b785 100644 --- a/boot/freeldr/fdebug/CMakeLists.txt +++ b/boot/freeldr/fdebug/CMakeLists.txt @@ -2,3 +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) diff --git a/boot/freeldr/install/CMakeLists.txt b/boot/freeldr/install/CMakeLists.txt index d495a180fee..ed106f2a97d 100644 --- a/boot/freeldr/install/CMakeLists.txt +++ b/boot/freeldr/install/CMakeLists.txt @@ -21,3 +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)