reactos/dll/win32/version/CMakeLists.txt
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

23 lines
527 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(version.dll version.spec ADD_IMPORTLIB)
list(APPEND SOURCE
info.c
install.c
resource.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/version.def)
add_library(version SHARED ${SOURCE})
set_module_type(version win32dll ENTRYPOINT 0 )
target_link_libraries(version wine)
add_importlibs(version kernel32 ntdll)
add_dependencies(version psdk)
add_cd_file(TARGET version DESTINATION reactos/system32 FOR all)