reactos/dll/win32/query/CMakeLists.txt
Sylvain Petreolle 89271fe38d [CMAKE]
Add each win32dll module to livecd and remove global temporary add-on from gcc.cmake.
Fix pch use in fmifs.
Enable remaining dlls in dll/win32/CMakeLists.txt.

svn path=/branches/cmake-bringup/; revision=49230
2010-10-22 19:40:56 +00:00

19 lines
467 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_definitions(-D__WINESRC__)
spec2def(query ${CMAKE_CURRENT_SOURCE_DIR}/query.spec ${CMAKE_CURRENT_BINARY_DIR}/query.def)
add_library(query SHARED query_main.c)
set_module_type(query win32dll)
target_link_libraries(query
${CMAKE_CURRENT_BINARY_DIR}/query.def
wine
uuid)
add_importlibs(query kernel32 ntdll)
add_dependencies(query query_def)
add_livecd_target(query reactos/system32)