mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
ed61512236
in favor of add_compile_options and the like with generator expressions Also take this as an opportunity to remove the C++11 standard hack, GCC 8 now defaults to C++14
30 lines
793 B
CMake
30 lines
793 B
CMake
|
|
project(appcompat)
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/dll/appcompat/apphelp
|
|
${REACTOS_SOURCE_DIR})
|
|
spec2def(acppage.dll acppage.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
ACPPage.cpp
|
|
CEditCompatModes.cpp
|
|
CLayerUIPropPage.cpp
|
|
precomp.h)
|
|
|
|
add_library(acppage MODULE
|
|
${SOURCE}
|
|
acppage.spec
|
|
ACPPage.rc
|
|
CLayerUIPropPage.hpp
|
|
CLayerStringList.hpp
|
|
resource.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/acppage.def)
|
|
|
|
set_module_type(acppage win32dll UNICODE)
|
|
target_link_libraries(acppage wine uuid cpprt atl_classes)
|
|
add_delay_importlibs(acppage apphelp ole32 oleaut32 shlwapi comctl32 sfc_os)
|
|
add_importlibs(acppage shell32 user32 advapi32 msvcrt kernel32)
|
|
add_pch(acppage precomp.h SOURCE)
|
|
add_cd_file(TARGET acppage DESTINATION reactos/system32 FOR all)
|