mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
16 lines
495 B
CMake
16 lines
495 B
CMake
|
|
set_cpp()
|
|
|
|
add_definitions(-DUSER_MODE)
|
|
include_directories(${REACTOS_SOURCE_DIR}/drivers/storage/ide/uniata)
|
|
add_executable(atactl atactl.cpp atactl.rc)
|
|
set_module_type(atactl win32cui)
|
|
add_importlibs(atactl advapi32 msvcrt kernel32 ntdll)
|
|
|
|
if(NOT MSVC)
|
|
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
|
|
#allow_warnings(atactl)
|
|
set_source_files_properties(atactl.cpp PROPERTIES COMPILE_FLAGS "-Wno-error")
|
|
endif()
|
|
|
|
add_cd_file(TARGET atactl DESTINATION reactos/system32 FOR all)
|