Add test-engine feature to the imgui port:
https://github.com/ocornut/imgui_test_engine
I made it a feature because they both depend on each other to build,
that's why it is a feature instead of a new port.
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [ ] ~~The "supports" clause reflects platforms that may be fixed by
this new version.~~
- [ ] ~~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.~~
- [ ] ~~Any patches that are no longer applied are deleted from the
port's directory.~~
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
Fixes#38662, update `imgui` to 1.90.6, update `vsgimgui` to 0.3.0.
imgui
-
Except `osx-binding, metal-binding, android-binding`, other features are
tested successfully in the following triplet:
```
x64-windows
x64-windows-static
```
Except `osx-binding,metal-binding,android-binding,dx12-binding`, other
features are tested successfully in the following triplet:
```
x86-windows
```
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [ ] ~The "supports" clause reflects platforms that may be fixed by
this new version.~
- [ ] ~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.~
- [ ] ~Any patches that are no longer applied are deleted from the
port's directory.~
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
---------
Co-authored-by: Monica <v-liumonica@microsoft.com>
* [imgui] Update to 1.89
* [imgui] Update version files
* [imgui] Update to 1.89.1
* [imgui] Update version files
* [ogre] Fix build failure on imgui 1.89
* [ogre] Update version files
* [imgui-sfml] Fix build failure on imgui 1.89
* [imgui-sfml] Update version files
* [milerius-sfml-imgui] Fix build failure on imgui 1.89
* [milerius-sfml-imgui] Update version files
* [imgui] Modernize port
* [imgui] Update version files
* bump port version
* version
* version... again
Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
* [imgui] Enable C++ 11 standard as code requires it
see vcpkg issue microsoft#25588
* [imgui] Enable C++ 11 standard using target_compile_features
As lerppana suggested:
It is better to use cxx_std_11 meta feature instead of locking the version number.
This should indicate cmake to use at least 11 instead of exactly 11.
see vcpkg issue microsoft#25588
* [imgui] update versions (vcpkg x-add-version imgui)
Enable C++ 11 standard as code requires it
see vcpkg issue microsoft#25588
* [imgui] Update to 1.88
* [imgui] Update version files
* [imgui-sfml] Build for C++11 to support imgui 1.88 changes
* [imgui-sfml] Update version files
* [imgui] Add supports for features dx-binding and metal-binding and metal-binding
* x-add-version
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
* [imgui] Fix build issues on OSX
* bump required cmake version because OBJCXX support has been introduced in 3.16
* set C++ standard to c++11 on Apple. Imgui own examples use c++14, however c++11 was found to be sufficient
* enable Objective-C++ mode for *.mm sources
* add `-fobjc-weak` flag for imgui_impl_metal.mm to fix compile error
* [imgui] Fix build issues on OSX
* bump required cmake version because OBJCXX support has been introduced in 3.16
* set C++ standard to c++11 on Apple. Imgui own examples use c++14, however c++11 was found to be sufficient
* enable Objective-C++ mode for *.mm sources
* add `-fobjc-weak` flag for imgui_impl_metal.mm to fix compile error
* Update ports/imgui/vcpkg.json
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [imgui] Fix manifest format
* Ran `vcpkg x-add-version imgui`
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [imgui] Update docking-experimental and freetype features to 1.81
* [imgui] Update version files
* [imgui] Move string replacement to post-build
* Update ports/imgui/CMakeLists.txt
* [imgui] Declare IMGUI_ENABLE_FREETYPE macro only if the freetype feature is enabled and move wchar32 string replacement to post-build
* [imgui] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [imgui] Split bindings to multiple features
See #12250.
I tested all the features on x86-windows, x64-windows, x64-windows-static and x64-linux triplets. Everything build fine except:
- dx12-binding on x86-windows. There's an issue opened about it here : https://github.com/ocornut/imgui/pull/2406
- allegro5-binding on x64-linux, because the current allegro5 port fails to build on this platform.
Contrary to the previous port which simply copied the sources to a specific folder, bindings are now compiled with their dependencies. The only exception is Marmelade, because there's no port available for it yet.
Unfortunately, I can't test the OSX and metal bindings. If someone using this platform could test it, it would be very much appreciated. :)
* [imgui] Move port files to the correct folder
* Update ports/imgui/CONTROL
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [imgui] Separate feature tools from feature example
* [imgui] Separate feature tools from feature example
Co-authored-by: JackBoosY <yuzaiyang@microsoft.com>