You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
405 B
10 lines
405 B
2 years ago
|
cmake_minimum_required(VERSION 3.26)
|
||
|
project(DebuggerSample NONE)
|
||
|
message("Hello CMake Debugger")
|
||
|
|
||
|
# There are concerns that because the debugger uses libuv for pipe
|
||
|
# communication, libuv may register a SIGCHILD handler that interferes with
|
||
|
# the existing handler used by kwsys process management. Test this case with a
|
||
|
# simple external process.
|
||
|
execute_process(COMMAND "${CMAKE_COMMAND}" -E echo test)
|