reactos/dll/win32/smdll/CMakeLists.txt
Amine Khaldi 2f6d499617 [CMAKE]
- Move more dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49450
2010-11-02 20:23:56 +00:00

18 lines
No EOL
376 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
add_library(smdll SHARED
dllmain.c
query.c
smdll.rc
smdll.def)
if(NOT MSVC)
set_source_files_properties(smdll.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
target_link_libraries(smdll smlib)
add_importlibs(smdll ntdll)
add_dependencies(smdll psdk buildno_header)
add_cab_target(smdll 1)