reactos/drivers/setup/blue/CMakeLists.txt
Jérôme Gardou 53fbd8e185 [CMAKE]
Completely refactor bootcd generation
  - one macro (à la cmake's install) to rule them all, to make your life simpler and have build files cleaner
  - Completely rehaul the bootcd tree : now you have in it some minimal reactos system
  - reflect those changes in setupldr
No livecd yet!

svn path=/branches/cmake-bringup/; revision=51731
2011-05-14 13:49:39 +00:00

10 lines
260 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers)
add_library(blue SHARED blue.c font.c blue.rc)
set_module_type(blue kernelmodedriver)
add_importlibs(blue ntoskrnl hal)
add_cd_file(TARGET blue DESTINATION reactos/system32/drivers NO_CAB)