mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
f1bc04d7e6
Follow-up of #2114. - s/Creater/Creator/ - Add an empty file in the SendTo folder. - Trick. CORE-16495
55 lines
1.3 KiB
CMake
55 lines
1.3 KiB
CMake
|
|
set_cpp(WITH_RUNTIME WITH_EXCEPTIONS)
|
|
if(NOT MSVC)
|
|
# HACK: this should be enabled globally!
|
|
add_compile_flags_language("-std=c++11" "CXX")
|
|
endif()
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_definitions(
|
|
-D_ATL_NO_EXCEPTIONS)
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/zlib
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/atl
|
|
${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
|
|
CConfirmReplace.cpp
|
|
CExplorerCommand.cpp
|
|
CEnumZipContents.cpp
|
|
CFolderViewCB.cpp
|
|
CSendToZip.cpp
|
|
CZipCreator.cpp
|
|
CZipEnumerator.hpp
|
|
CZipExtract.cpp
|
|
CZipFolder.hpp
|
|
CZipPassword.cpp
|
|
Debug.cpp
|
|
zipfldr.spec
|
|
precomp.h
|
|
resource.h)
|
|
|
|
add_library(zipfldr MODULE
|
|
${SOURCE}
|
|
${ZLIB_SOURCE}
|
|
zipfldr.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/zipfldr.def)
|
|
|
|
|
|
set_module_type(zipfldr win32dll UNICODE)
|
|
target_link_libraries(zipfldr minizip zlib uuid)
|
|
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)
|
|
|