reactos/dll/cpl/inetcpl/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

19 lines
611 B
CMake

include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(inetcpl.cpl inetcpl.spec)
list(APPEND SOURCE
inetcpl.c
content.c
general.c
security.c
${CMAKE_CURRENT_BINARY_DIR}/inetcpl_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/inetcpl.def)
add_library(inetcpl SHARED ${SOURCE} inetcpl.rc)
set_module_type(inetcpl cpl UNICODE)
target_link_libraries(inetcpl wine)
add_importlibs(inetcpl advapi32 comctl32 user32 shlwapi msvcrt kernel32 ntdll)
add_delay_importlibs(inetcpl cryptui wininet ole32 urlmon shell32)
add_cd_file(TARGET inetcpl DESTINATION reactos/system32 FOR all)