Skip to content
New issue

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

Conan 2.0 doesn't accept values from conan_cmake_autodetect() #421

Open
xahon opened this issue May 15, 2022 · 4 comments
Open

Conan 2.0 doesn't accept values from conan_cmake_autodetect() #421

xahon opened this issue May 15, 2022 · 4 comments
Labels

Comments

@xahon
Copy link

xahon commented May 15, 2022

ERROR: Invalid setting 'Visual Studio' is not a valid 'settings.compiler' value.
Possible values are ['sun-cc', 'gcc', 'msvc', 'clang', 'apple-clang', 'intel-cc', 'qcc', 'mcst-lcc']

My current workaround is

conan_cmake_autodetect(settings)
list(FIND settings "compiler=Visual Studio" index)
if (NOT ${index} EQUAL -1)
    list(REMOVE_AT settings ${index})
    list(INSERT settings ${index} "compiler=msvc")
endif()
@xahon
Copy link
Author

xahon commented May 15, 2022

I also noticed that this function doesn't parse anything correctly. Conan reports a lot of different errors like:

  • ERROR: The provided compiler.cppstd is not supported with the specified compiler
  • ERROR: Invalid setting 'MDd' is not a valid 'settings.compiler.runtime' value.
    Possible values are ['static', 'dynamic']

@xahon xahon changed the title conan_cmake_autodetect() parses wrong value of MSVC compiler Conan 2.0 doesn't accept values from conan_cmake_autodetect() May 15, 2022
@czoido
Copy link
Contributor

czoido commented May 18, 2022

Hi @xahon,
Thanks for the question, right now cmake-conan does not support conan 2.0 (we added a note in the README announcing this), once it is GA we will see if we start supporting it.

@hwhsu1231
Copy link
Contributor

@xahon Excuse me. What does "GA" stand for?

@czoido
Copy link
Contributor

czoido commented May 18, 2022

@xahon Excuse me. What does "GA" stand for?

It stands for General Availability

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants