Synchronize with trunk revision 59781.
[reactos.git] / base / applications / atactl / CMakeLists.txt
1
2 set_cpp()
3
4 add_definitions(-DUSER_MODE)
5 include_directories(${REACTOS_SOURCE_DIR}/drivers/storage/ide/uniata)
6 add_executable(atactl atactl.cpp atactl.rc)
7 set_module_type(atactl win32cui)
8 add_importlibs(atactl advapi32 msvcrt kernel32 ntdll)
9
10 if(NOT MSVC)
11 # FIXME: http://www.cmake.org/Bug/view.php?id=12998
12 #allow_warnings(atactl)
13 set_source_files_properties(atactl.cpp PROPERTIES COMPILE_FLAGS "-Wno-error")
14 endif()
15
16 add_cd_file(TARGET atactl DESTINATION reactos/system32 FOR all)