lszl84 / wx_cmake_template

A template for multiplatform WxWidgets projects using CMake
https://www.lukesdevtutorials.com
MIT License
147 stars 50 forks source link

How to specify a specific wxWidgets version? #10

Closed tester0077 closed 1 year ago

tester0077 commented 1 year ago

What would be the best/preferred way to specify a specific release or minimum/maximum version for wxWidgets, rather what ever cmake can find at github ?

lszl84 commented 1 year ago

Take a look at the list here: https://github.com/wxWidgets/wxWidgets/tags, and then use the appropriate tag name in the GIT_TAG parameter in third party/wxwidgets/CMakeLists.txt

tester0077 commented 1 year ago

Thank you