[Documentation] [TitleIndex] [WordIndex

Msvc Verbose CMake

CMake doesn't give you all the include and link flags. Check your config.cmake that is auto-generated by winros_init_build and uncomment the configured variables for verbosity.

Alternatively (for some reason you are not using the win_python_build_tools, then you can achieve the same thing by hacking the cmake windows platform module. Uncomment the last three lines therein.

C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\Platform\Windows.cmake
...
# SET(CMAKE_START_TEMP_FILE "")
# SET(CMAKE_END_TEMP_FILE "")
# SET(CMAKE_VERBOSE_MAKEFILE 1)

2023-10-28 13:11