[NTDLL_APITEST] Add simple tests for RtlUnicodeStringToAnsiString() that were used...
[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 add_definitions(
12 -D_ATL_NO_EXCEPTIONS)
13
14 include_directories(
15 ${REACTOS_SOURCE_DIR}/sdk/lib/atl
16 ${REACTOS_SOURCE_DIR})
17
18 spec2def(qcklnch.dll qcklnch.spec)
19
20 add_library(qcklnch SHARED
21 qcklnch.rc
22 qcklnch.cpp
23 CQuickLaunchBand.cpp
24 CISFBand.cpp
25 CQuickLaunchBand.h
26 CISFBand.h
27 ${CMAKE_CURRENT_BINARY_DIR}/qcklnch.def)
28
29 set_module_type(qcklnch win32dll UNICODE)
30 target_link_libraries(qcklnch uuid wine atlnew)
31
32 add_importlibs(qcklnch
33 advapi32
34 winmm
35 ole32
36 oleaut32
37 shlwapi
38 shell32
39 comctl32
40 msvcrt
41 gdi32
42 user32
43 kernel32
44 ntdll)
45
46 add_cd_file(TARGET qcklnch DESTINATION reactos/system32 FOR all)