[PSDK] Fix build.
[reactos.git] / dll / shellext / qcklnch / CMakeLists.txt
1
2 project(SHELL)
3
4 set_cpp(WITH_RUNTIME)
5
6 if(NOT MSVC)
7 # HACK: this should be enabled globally!
8 add_compile_flags_language("-std=c++11" "CXX")
9 endif()
10
11 include_directories(
12 ${REACTOS_SOURCE_DIR}/sdk/lib/atl
13 ${REACTOS_SOURCE_DIR})
14
15 spec2def(qcklnch.dll qcklnch.spec)
16
17 add_library(qcklnch SHARED
18 qcklnch.rc
19 qcklnch.cpp
20 CQuickLaunchBand.cpp
21 CISFBand.cpp
22 CQuickLaunchBand.h
23 CISFBand.h
24 ${CMAKE_CURRENT_BINARY_DIR}/qcklnch.def)
25
26 set_module_type(qcklnch win32dll UNICODE)
27 target_link_libraries(qcklnch uuid wine atlnew)
28
29 add_importlibs(qcklnch
30 advapi32
31 winmm
32 ole32
33 oleaut32
34 shlwapi
35 shell32
36 comctl32
37 msvcrt
38 gdi32
39 user32
40 kernel32
41 ntdll)
42
43 add_cd_file(TARGET qcklnch DESTINATION reactos/system32 FOR all)