mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
26 lines
757 B
CMake
26 lines
757 B
CMake
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(inetcpl.cpl inetcpl.spec)
|
|
|
|
list(APPEND SOURCE
|
|
inetcpl.c
|
|
content.c
|
|
general.c
|
|
security.c
|
|
precomp.h)
|
|
|
|
file(GLOB inetcpl_rc_deps resources/*.*)
|
|
add_rc_deps(inetcpl.rc ${inetcpl_rc_deps})
|
|
|
|
add_library(inetcpl SHARED
|
|
${SOURCE}
|
|
inetcpl.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetcpl_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetcpl.def)
|
|
|
|
set_module_type(inetcpl cpl UNICODE)
|
|
target_link_libraries(inetcpl wine)
|
|
add_delay_importlibs(inetcpl cryptui wininet ole32 urlmon shell32)
|
|
add_importlibs(inetcpl advapi32 comctl32 user32 shlwapi msvcrt kernel32 ntdll)
|
|
add_pch(inetcpl precomp.h SOURCE)
|
|
add_cd_file(TARGET inetcpl DESTINATION reactos/system32 FOR all)
|