From 1c15e0526033ef98915d52283b3cfe340e28a58e Mon Sep 17 00:00:00 2001 From: PB Date: Fri, 16 Apr 2021 12:35:12 +0200 Subject: [PATCH] Mention example CMake file in CMake Overview --- docs/doxygen/overviews/cmake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/doxygen/overviews/cmake.md b/docs/doxygen/overviews/cmake.md index 68f3be5784..c40b1b4704 100644 --- a/docs/doxygen/overviews/cmake.md +++ b/docs/doxygen/overviews/cmake.md @@ -99,7 +99,7 @@ Using find_package {#cmake_find_package} ------------------ You can use `find_package(wxWidgets)` to use a compiled version of wxWidgets. Have a look at the [CMake Documentation](https://cmake.org/cmake/help/latest/module/FindwxWidgets.html) -for detailed instructions. +for detailed instructions. wxWidgets also provides an example CMake file in the minimal sample folder. Your *CMakeLists.txt* would look like this: ~~~