Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeLib/DebuggerSample/CMakeLists.txt
3153 views
1
cmake_minimum_required(VERSION 3.26)
2
project(DebuggerSample NONE)
3
message("Hello CMake Debugger")
4
5
# There are concerns that because the debugger uses libuv for pipe
6
# communication, libuv may register a SIGCHILD handler that interferes with
7
# the existing handler used by kwsys process management. Test this case with a
8
# simple external process.
9
execute_process(COMMAND "${CMAKE_COMMAND}" -E echo test)
10
11