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
If either one is missing, the configure step fails such as this:
-- Looking for include file pwd.h - found
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Found FLEX: /usr/bin/flex (found version "2.5.39")
CMake Error at Testing/CMakeLists.txt:45 (GET_PROPERTY):
get_property could not find TARGET minccalc. Perhaps it has not yet been
created.
The issue is that progs/CMakeLists.txt will simply omit building minccalc if bison or flex is not found. However, Testing/CMakeLists.txt is not so flexible and fails trying to get properties of "minccalc".
So you could make Testing flexible enough to omit testing minccalc if the latter is not built. Alternatively, you could simply require bison/flex and remove the conditional in progs/CMakeLists.
The text was updated successfully, but these errors were encountered:
If either one is missing, the configure step fails such as this:
-- Looking for include file pwd.h - found
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Found FLEX: /usr/bin/flex (found version "2.5.39")
CMake Error at Testing/CMakeLists.txt:45 (GET_PROPERTY):
get_property could not find TARGET minccalc. Perhaps it has not yet been
created.
The issue is that progs/CMakeLists.txt will simply omit building minccalc
if bison or flex is not found. However, Testing/CMakeLists.txt is not so
flexible and fails trying to get properties of "minccalc".
So you could make Testing flexible enough to omit testing minccalc if the
latter is not built. Alternatively, you could simply require bison/flex and
remove the conditional in progs/CMakeLists.
—
Reply to this email directly or view it on GitHub #27.
If either one is missing, the configure step fails such as this:
-- Looking for include file pwd.h - found
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Found FLEX: /usr/bin/flex (found version "2.5.39")
CMake Error at Testing/CMakeLists.txt:45 (GET_PROPERTY):
get_property could not find TARGET minccalc. Perhaps it has not yet been
created.
The issue is that progs/CMakeLists.txt will simply omit building minccalc if bison or flex is not found. However, Testing/CMakeLists.txt is not so flexible and fails trying to get properties of "minccalc".
So you could make Testing flexible enough to omit testing minccalc if the latter is not built. Alternatively, you could simply require bison/flex and remove the conditional in progs/CMakeLists.
The text was updated successfully, but these errors were encountered: