I am new to Visual Studio and CMake. I am trying to configure Insight Toolkit (ITK) in my laptop. I have done the following steps:
- Downloaded the ITK Source Code from the ITK repository.
- Configured and Generated Build files using CMake (Version 3.23.2)
- Built Visual Studio Solution files (Visual Studio 2019)
Now I want to run a Hello World code in C++ to check everything is configured correctly. For this, I have done the following:
- Created a folder named HelloWorld which contains two files
a. HelloWorld.cxx b. CMakeLists.txt
- Created another folder named HelloWorld_build, which contains CMake configuration files (executed from command prompt), and project build files (executed in Visual Studio).
Everything has run smoothly up to this point . The HelloWorld_build folder contains the HelloWorld.sln file. However, I am still not able to see the output. What is the step to see the output?