mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Introduce the case where entry point is 0. - Improve some dlls. svn path=/branches/cmake-bringup/; revision=48966
18 lines
454 B
CMake
18 lines
454 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(activeds ${CMAKE_CURRENT_SOURCE_DIR}/activeds.spec ${CMAKE_CURRENT_BINARY_DIR}/activeds.def)
|
|
|
|
add_library(activeds SHARED activeds_main.c)
|
|
|
|
set_module_type(activeds win32dll)
|
|
|
|
target_link_libraries(activeds
|
|
${CMAKE_CURRENT_BINARY_DIR}/activeds.def
|
|
wine)
|
|
|
|
add_importlibs(activeds kernel32 ntdll)
|
|
|
|
add_dependencies(activeds activeds_def)
|