* Add version information. By Lee Schroeder.
CR-16 CORE-6822

svn path=/trunk/; revision=59225
This commit is contained in:
Amine Khaldi 2013-06-16 10:58:55 +00:00
parent 2146622d0f
commit 2f922be30b
2 changed files with 7 additions and 5 deletions

View file

@ -1,10 +1,7 @@
set_cpp()
add_definitions(-DUSER_MODE)
include_directories(${REACTOS_SOURCE_DIR}/drivers/storage/ide/uniata)
add_executable(atactl atactl.cpp)
add_executable(atactl atactl.cpp atactl.rc)
set_module_type(atactl win32cui)
add_importlibs(atactl advapi32 msvcrt kernel32 ntdll)
@ -14,4 +11,5 @@ if(NOT MSVC)
set_source_files_properties(atactl.cpp PROPERTIES COMPILE_FLAGS "-Wno-error")
target_link_libraries(atactl gcc)
endif()
add_cd_file(TARGET atactl DESTINATION reactos/system32 FOR all)
add_cd_file(TARGET atactl DESTINATION reactos/system32 FOR all)

View file

@ -0,0 +1,4 @@
#define REACTOS_STR_FILE_DESCRIPTION "UniATA Console Management Utility\0"
#define REACTOS_STR_INTERNAL_NAME "atactl\0"
#define REACTOS_STR_ORIGINAL_FILENAME "atactl.exe\0"
#include <reactos/version.rc>