2017-12-29 22:45:02 +00:00
|
|
|
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/zlib
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/3rdparty/zlib/contrib)
|
|
|
|
|
|
|
|
spec2def(zipfldr.dll zipfldr.spec ADD_IMPORTLIB)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
zipfldr.cpp
|
|
|
|
zippidl.cpp
|
|
|
|
zippidl.hpp
|
|
|
|
IZip.hpp
|
2019-02-27 21:18:32 +00:00
|
|
|
CConfirmReplace.cpp
|
2017-12-29 22:45:02 +00:00
|
|
|
CExplorerCommand.cpp
|
|
|
|
CEnumZipContents.cpp
|
|
|
|
CFolderViewCB.cpp
|
2019-12-01 12:20:53 +00:00
|
|
|
CSendToZip.cpp
|
2019-12-01 17:26:34 +00:00
|
|
|
CZipCreator.cpp
|
2017-12-29 22:45:02 +00:00
|
|
|
CZipEnumerator.hpp
|
|
|
|
CZipExtract.cpp
|
|
|
|
CZipFolder.hpp
|
2019-02-27 21:18:52 +00:00
|
|
|
CZipPassword.cpp
|
2017-12-29 22:45:02 +00:00
|
|
|
Debug.cpp
|
|
|
|
zipfldr.spec
|
|
|
|
precomp.h
|
|
|
|
resource.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(zipfldr MODULE
|
2017-12-29 22:45:02 +00:00
|
|
|
${SOURCE}
|
|
|
|
${ZLIB_SOURCE}
|
|
|
|
zipfldr.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/zipfldr.def)
|
|
|
|
|
|
|
|
set_module_type(zipfldr win32dll UNICODE)
|
2020-09-18 09:08:58 +00:00
|
|
|
target_link_libraries(zipfldr minizip zlib uuid cpprt atl_classes)
|
2020-09-18 07:34:18 +00:00
|
|
|
set_target_cpp_properties(zipfldr WITH_EXCEPTIONS)
|
2017-12-29 22:45:02 +00:00
|
|
|
add_importlibs(zipfldr oleaut32 ole32 shlwapi comctl32 shell32 user32 advapi32 msvcrt kernel32 ntdll)
|
|
|
|
add_pch(zipfldr precomp.h SOURCE)
|
|
|
|
add_cd_file(TARGET zipfldr DESTINATION reactos/system32 FOR all)
|
|
|
|
|