mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:22:59 +00:00

Completely refactor bootcd generation - one macro (à la cmake's install) to rule them all, to make your life simpler and have build files cleaner - Completely rehaul the bootcd tree : now you have in it some minimal reactos system - reflect those changes in setupldr No livecd yet! svn path=/branches/cmake-bringup/; revision=51731
12 lines
322 B
CMake
12 lines
322 B
CMake
|
|
set_unicode()
|
|
include_directories(.)
|
|
set_rc_compiler()
|
|
|
|
add_executable(userinit userinit.c userinit.rc)
|
|
|
|
target_link_libraries(userinit wine)
|
|
|
|
set_module_type(userinit win32gui)
|
|
add_importlibs(userinit user32 gdi32 advapi32 shell32 shlwapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET userinit DESTINATION reactos/system32)
|