Create a branch for working on csrss and co.
[reactos.git] / dll / cpl / inetcpl / CMakeLists.txt
1
2 set_rc_compiler()
3
4 include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
5
6 spec2def(inetcpl.cpl inetcpl.spec)
7
8 list(APPEND SOURCE
9 inetcpl.c
10 content.c
11 general.c
12 security.c
13 inetcpl.rc
14 ${CMAKE_CURRENT_BINARY_DIR}/inetcpl_stubs.c
15 ${CMAKE_CURRENT_BINARY_DIR}/inetcpl.def)
16
17 add_library(inetcpl SHARED ${SOURCE})
18
19 set_module_type(inetcpl cpl UNICODE)
20
21 target_link_libraries(inetcpl wine)
22
23 add_importlibs(inetcpl
24 advapi32
25 comctl32
26 user32
27 gdi32
28 shlwapi
29 msvcrt
30 kernel32
31 ntdll)
32
33 add_delay_importlibs(inetcpl
34 cryptui
35 wininet
36 ole32
37 urlmon)
38
39 add_cd_file(TARGET inetcpl DESTINATION reactos/system32 FOR all)
40