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)