reactos/rosapps/applications/cmdutils/gflags/CMakeLists.txt
Pierre Schweitzer d7113fdd2b [GFLAGS]
Add a quick'n'dirty implementation of gflags utility.
It only covers some page heap usage (enough to enable/disable DPH :-)).
It's syntax compatible with MS one, and with what's written down in ROS wiki.

See: https://www.reactos.org/wiki/Debugging#Debug_Page_Heap_.28DPH.29

svn path=/trunk/; revision=75073
2017-06-17 12:34:08 +00:00

11 lines
250 B
CMake

add_executable(gflags gflags.c gflags.rc)
set_module_type(gflags win32cui UNICODE)
add_importlibs(gflags advapi32 user32 msvcrt kernel32)
if(MSVC)
add_importlibs(gflags ntdll)
endif()
add_cd_file(TARGET gflags DESTINATION reactos/bin FOR all)