reactos/base/applications/rapps_com/CMakeLists.txt
Mark Jansen 964c22c1ca
[RAPPS][RAPPS.COM] Introduce a rapps console shim
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
2020-10-25 15:44:33 +01:00

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)