reactos/dll/shellext/devcpux/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

21 lines
444 B
CMake

set_unicode()
spec2def(devcpux ${CMAKE_CURRENT_SOURCE_DIR}/devcpux.spec ${CMAKE_CURRENT_BINARY_DIR}/devcpux.def)
add_library(devcpux SHARED processor.c processor.rc)
set_module_type(devcpux win32dll)
target_link_libraries(devcpux ${CMAKE_CURRENT_BINARY_DIR}/devcpux.def)
add_importlibs(devcpux
user32
powrprof
comctl32
kernel32
ntdll)
add_dependencies(devcpux devcpux_def)
add_livecd_target(devcpux reactos/system32)