mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
964c22c1ca
rapps.com will be launched when running 'rapps' from cmd or from run, and since it is a console application, explorer/ cmd will wait for it. This rapps.com passes the commandline to rapps.exe, and wait for rapps.exe to exit before closing. CORE-17281
8 lines
271 B
CMake
8 lines
271 B
CMake
project(rapps)
|
|
|
|
add_executable(rapps.com main.c rapps.rc)
|
|
set_module_type(rapps.com win32cui UNICODE)
|
|
set_target_properties(rapps.com PROPERTIES SUFFIX "")
|
|
add_importlibs(rapps.com msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET rapps.com DESTINATION reactos/system32 FOR all)
|