You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release/CMakeLists.txt says cmake_minimum_required(VERSION 3.0).
But Release/src/CMakeLists.txt makes use of the target_sources command which is only available
in CMake 3.1 and above.
The text was updated successfully, but these errors were encountered:
target_sources() is only available since this version and this avoids
CMake Error at src/CMakeLists.txt:92 (target_sources):
Unknown CMake command "target_sources".
when using CMake 3.0, for example.
Closesmicrosoft#633.
target_sources() is only available since this version and this avoids
CMake Error at src/CMakeLists.txt:92 (target_sources):
Unknown CMake command "target_sources".
when using CMake 3.0, for example.
Closes#633.
Release/CMakeLists.txt
sayscmake_minimum_required(VERSION 3.0)
.But
Release/src/CMakeLists.txt
makes use of thetarget_sources
command which is only availablein CMake 3.1 and above.
The text was updated successfully, but these errors were encountered: