mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
57 lines
1 KiB
CMake
57 lines
1 KiB
CMake
|
|
project(SHELL)
|
|
|
|
set_cpp(WITH_RUNTIME)
|
|
|
|
if(NOT MSVC)
|
|
# HACK: this should be enabled globally!
|
|
add_compile_flags_language("-std=c++11" "CXX")
|
|
endif()
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/atl
|
|
${REACTOS_SOURCE_DIR})
|
|
|
|
add_definitions(
|
|
-D_ATL_NO_EXCEPTIONS)
|
|
|
|
spec2def(stobject.dll stobject.spec)
|
|
|
|
file(GLOB_RECURSE stobject_rc_deps resources/*.*)
|
|
add_rc_deps(stobject.rc ${stobject_rc_deps})
|
|
|
|
list(APPEND SOURCE
|
|
csystray.cpp
|
|
stobject.cpp
|
|
hotplug.cpp
|
|
power.cpp
|
|
volume.cpp
|
|
precomp.h)
|
|
|
|
add_library(stobject SHARED
|
|
${SOURCE}
|
|
stobject.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/stobject.def)
|
|
|
|
set_module_type(stobject win32dll UNICODE)
|
|
target_link_libraries(stobject uuid wine atlnew)
|
|
|
|
add_importlibs(stobject
|
|
setupapi
|
|
advapi32
|
|
winmm
|
|
ole32
|
|
oleaut32
|
|
powrprof
|
|
shlwapi
|
|
shell32
|
|
comctl32
|
|
msvcrt
|
|
gdi32
|
|
user32
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_pch(stobject precomp.h SOURCE)
|
|
add_cd_file(TARGET stobject DESTINATION reactos/system32 FOR all)
|