Skip to content
Snippets Groups Projects
Commit dcc617fc authored by Lynx Linden's avatar Lynx Linden
Browse files

Made the gcc version number checking more robust in llaudio's

CMakeFiles.txt file. Previously it checked for a narrow range of gcc
versions via a regex:

      if (${CXX_VERSION} MATCHES "4.[23]")

Now we explicit check for any version >= 4.2:

      if (${CXX_VERSION_NUMBER} GREATER 419)
parent 5bff5d28
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment