mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
17 lines
558 B
CMake
17 lines
558 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
spec2def(propsys.dll propsys.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
propstore.c
|
|
propsys_main.c
|
|
propvar.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/propsys_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/propsys.def)
|
|
|
|
add_library(propsys SHARED ${SOURCE} propsys.rc)
|
|
set_module_type(propsys win32dll)
|
|
target_link_libraries(propsys uuid wine)
|
|
add_importlibs(propsys ole32 oleaut32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET propsys DESTINATION reactos/system32 FOR all)
|