From 78da5b4e0a331369cf740eb4fcf785cfd0f0eabd Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 26 Sep 2011 19:04:02 +0000 Subject: [PATCH] [INSTALLFREELDR] Add to cmake build (built on demand) svn path=/trunk/; revision=53865 --- reactos/boot/freeldr/CMakeLists.txt | 3 ++- reactos/boot/freeldr/install/CMakeLists.txt | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 reactos/boot/freeldr/install/CMakeLists.txt diff --git a/reactos/boot/freeldr/CMakeLists.txt b/reactos/boot/freeldr/CMakeLists.txt index 859c73a52e6..7c60d8efe3d 100644 --- a/reactos/boot/freeldr/CMakeLists.txt +++ b/reactos/boot/freeldr/CMakeLists.txt @@ -1,3 +1,4 @@ add_subdirectory(bootsect) -add_subdirectory(freeldr) \ No newline at end of file +add_subdirectory(freeldr) +add_subdirectory(install) diff --git a/reactos/boot/freeldr/install/CMakeLists.txt b/reactos/boot/freeldr/install/CMakeLists.txt new file mode 100644 index 00000000000..cca907cabf5 --- /dev/null +++ b/reactos/boot/freeldr/install/CMakeLists.txt @@ -0,0 +1,8 @@ + +add_executable(installfreeldr EXCLUDE_FROM_ALL + install.c + volume.c) + +set_module_type(installfreeldr win32cui) + +add_importlibs(installfreeldr msvcrt kernel32)