We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running these instructions created a Debug build
git clone https://github.com/lfreist/hwinfo && cd hwinfo mkdir build cmake -B build && cmake --build build cmake --install build
However, the install command is looking for it in Release
CMake Error at build/src/cmake_install.cmake:51 (file): file INSTALL cannot find ".../hwinfo/build/lib/Release/hwinfo_battery.lib": No error. Call Stack (most recent call first):
The text was updated successfully, but these errors were encountered:
From src/cmake_install.cmake:
src/cmake_install.cmake
# Set the install configuration name. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) if(BUILD_TYPE) string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") else() set(CMAKE_INSTALL_CONFIG_NAME "Release") endif() message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") endif()
It seems when installing, BUILD_TYPE must be specified, otherwise it will default use Release.
BUILD_TYPE
Release
Sorry, something went wrong.
No branches or pull requests
Running these instructions created a Debug build
However, the install command is looking for it in Release
The text was updated successfully, but these errors were encountered: