mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
14 lines
453 B
CMake
14 lines
453 B
CMake
|
|
list(APPEND SOURCE
|
|
drivepage.c
|
|
reactos.c
|
|
reactos.h)
|
|
|
|
file(GLOB reactos_rc_deps res/*.*)
|
|
add_rc_deps(reactos.rc ${reactos_rc_deps})
|
|
add_executable(reactos ${SOURCE} reactos.rc)
|
|
add_pch(reactos reactos.h SOURCE)
|
|
target_link_libraries(reactos uuid)
|
|
set_module_type(reactos win32gui UNICODE)
|
|
add_importlibs(reactos advapi32 gdi32 user32 comctl32 setupapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET reactos DESTINATION reactos NO_CAB FOR bootcd)
|