mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 14:19:25 +00:00
ba0887eb81
After r67555 regexpl builds fine on MSVC. So reactivate it. Thx goes to ThFabba svn path=/trunk/; revision=67559
36 lines
928 B
CMake
36 lines
928 B
CMake
|
|
set_cpp(WITH_RUNTIME WITH_STL WITH_EXCEPTIONS)
|
|
|
|
list(APPEND SOURCE
|
|
ArgumentParser.cpp
|
|
Console.cpp
|
|
RegistryExplorer.cpp
|
|
RegistryKey.cpp
|
|
RegistryTree.cpp
|
|
SecurityDescriptor.cpp
|
|
ShellCommand.cpp
|
|
ShellCommandChangeKey.cpp
|
|
ShellCommandConnect.cpp
|
|
ShellCommandDACL.cpp
|
|
ShellCommandDeleteKey.cpp
|
|
ShellCommandDeleteValue.cpp
|
|
ShellCommandDir.cpp
|
|
ShellCommandExit.cpp
|
|
ShellCommandHelp.cpp
|
|
ShellCommandNewKey.cpp
|
|
ShellCommandOwner.cpp
|
|
ShellCommandSACL.cpp
|
|
ShellCommandSetValue.cpp
|
|
ShellCommandValue.cpp
|
|
ShellCommandVersion.cpp
|
|
ShellCommandsLinkedList.cpp
|
|
TextHistory.cpp
|
|
Completion.cpp
|
|
Pattern.cpp
|
|
Settings.cpp
|
|
Prompt.cpp)
|
|
|
|
add_executable(regexpl ${SOURCE} regexpl.rc)
|
|
set_module_type(regexpl win32cui)
|
|
add_importlibs(regexpl user32 advapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET regexpl DESTINATION reactos/system32 FOR all)
|