X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=dll%2Fshellext%2Facppage%2FCMakeLists.txt;h=f38c77c50ce8a1e280f8911f03e388bbce5d9539;hp=0f16701e3ccb17e8f41fa7ef077095bb2cfc6a67;hb=HEAD;hpb=ab3451aea10543d738e23dcbc0b01777dea114b9 diff --git a/dll/shellext/acppage/CMakeLists.txt b/dll/shellext/acppage/CMakeLists.txt index 0f16701e3cc..f38c77c50ce 100644 --- a/dll/shellext/acppage/CMakeLists.txt +++ b/dll/shellext/acppage/CMakeLists.txt @@ -1,17 +1,7 @@ project(appcompat) -set_cpp(WITH_RUNTIME) -if(NOT MSVC) - # HACK: this should be enabled globally! - add_compile_flags_language("-std=c++11" "CXX") -endif() - -add_definitions( - -D_ATL_NO_EXCEPTIONS) - include_directories( - ${REACTOS_SOURCE_DIR}/sdk/lib/atl ${REACTOS_SOURCE_DIR}/dll/appcompat/apphelp ${REACTOS_SOURCE_DIR}) spec2def(acppage.dll acppage.spec ADD_IMPORTLIB) @@ -22,7 +12,7 @@ list(APPEND SOURCE CLayerUIPropPage.cpp precomp.h) -add_library(acppage SHARED +add_library(acppage MODULE ${SOURCE} acppage.spec ACPPage.rc @@ -32,7 +22,7 @@ add_library(acppage SHARED ${CMAKE_CURRENT_BINARY_DIR}/acppage.def) set_module_type(acppage win32dll UNICODE) -target_link_libraries(acppage atlnew wine uuid) +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)