mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
12 lines
281 B
CMake
12 lines
281 B
CMake
|
|
PROJECT(SHELL)
|
|
|
|
list(APPEND SOURCE
|
|
filebrowser.c
|
|
filebrowser.rc)
|
|
|
|
add_executable(filebrowser ${SOURCE})
|
|
set_module_type(filebrowser win32gui UNICODE)
|
|
add_importlibs(filebrowser shell32 browseui msvcrt kernel32)
|
|
|
|
add_cd_file(TARGET filebrowser DESTINATION reactos FOR all)
|