[CMAKE] Get rid of the set_cpp macro
[reactos.git] / modules / rosapps / applications / sysutils / regexpl / CMakeLists.txt
1
2 list(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
31 add_executable(regexpl ${SOURCE} regexpl.rc)
32 target_link_libraries(regexpl cppstl)
33 set_target_cpp_properties(regexpl WITH_EXCEPTIONS)
34 set_module_type(regexpl win32cui)
35 add_importlibs(regexpl user32 advapi32 msvcrt kernel32 ntdll)
36 add_cd_file(TARGET regexpl DESTINATION reactos/system32 FOR all)