1 2list(APPEND SOURCE 3 ArgumentParser.cpp 4 Console.cpp 5 RegistryExplorer.cpp 6 RegistryKey.cpp 7 RegistryTree.cpp 8 SecurityDescriptor.cpp 9 ShellCommand.cpp 10 ShellCommandChangeKey.cpp 11 ShellCommandConnect.cpp 12 ShellCommandDACL.cpp 13 ShellCommandDeleteKey.cpp 14 ShellCommandDeleteValue.cpp 15 ShellCommandDir.cpp 16 ShellCommandExit.cpp 17 ShellCommandHelp.cpp 18 ShellCommandNewKey.cpp 19 ShellCommandOwner.cpp 20 ShellCommandSACL.cpp 21 ShellCommandSetValue.cpp 22 ShellCommandValue.cpp 23 ShellCommandVersion.cpp 24 ShellCommandsLinkedList.cpp 25 TextHistory.cpp 26 Completion.cpp 27 Pattern.cpp 28 Settings.cpp 29 Prompt.cpp) 30 31add_executable(regexpl ${SOURCE} regexpl.rc) 32target_link_libraries(regexpl cppstl) 33set_target_cpp_properties(regexpl WITH_EXCEPTIONS) 34set_module_type(regexpl win32cui) 35add_importlibs(regexpl user32 advapi32 msvcrt kernel32 ntdll) 36add_cd_file(TARGET regexpl DESTINATION reactos/system32 FOR all) 37