'change build files output CmakeLists

How can i change the build files output of a CmakeLists.txt?

currently the build files are still appearing in the source directory, while i want them in a sub directory of the source file. I tried the following, but the build files still appear in the source directory.

set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/TestDebug)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/TestDebug)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/TestDebug)
set(CMAKE_MODULE_PATH ${CMAKE_BINARY_DIR}/TestDebug)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source