From 074f5077fc652f691ad59e17a4ee157c9a94950d Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 1 Jun 2020 09:59:48 +0100 Subject: [PATCH] Docs: Fix references to `docs/CMake API.txt` --- README.md | 2 +- examples/CMake/AudioPlugin/CMakeLists.txt | 2 +- examples/CMake/ConsoleApp/CMakeLists.txt | 2 +- examples/CMake/GuiApp/CMakeLists.txt | 4 ++-- extras/Build/CMake/JUCEUtils.cmake | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1fb2a43fc8..6edf255df0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ JUCE forum to discuss the new features.__ ## Getting Started with CMake For comprehensive documentation on JUCE's CMake API, see -`examples/CMake/readme.md` in this repo. +`docs/CMake API.txt` in this repo. ### Building Examples diff --git a/examples/CMake/AudioPlugin/CMakeLists.txt b/examples/CMake/AudioPlugin/CMakeLists.txt index 40b7a7c3cf..3467b36b20 100644 --- a/examples/CMake/AudioPlugin/CMakeLists.txt +++ b/examples/CMake/AudioPlugin/CMakeLists.txt @@ -35,7 +35,7 @@ project(AUDIO_PLUGIN_EXAMPLE VERSION 0.0.1) # (AudioPluginExample here). This target is a normal CMake target, but has a lot of extra properties set # up by default. As well as this shared code static library, this function adds targets for each of # the formats specified by the FORMATS arguments. This function accepts many optional arguments. -# Check the readme at `examples/CMake` in the JUCE repo for the full list. +# Check the readme at `docs/CMake API.txt` in the JUCE repo for the full list. juce_add_plugin(AudioPluginExample # VERSION ... # Set this if the plugin version is different to the project version diff --git a/examples/CMake/ConsoleApp/CMakeLists.txt b/examples/CMake/ConsoleApp/CMakeLists.txt index 23cc1e853e..44f6637dab 100644 --- a/examples/CMake/ConsoleApp/CMakeLists.txt +++ b/examples/CMake/ConsoleApp/CMakeLists.txt @@ -30,7 +30,7 @@ project(CONSOLE_APP_EXAMPLE VERSION 0.0.1) # `juce_add_console_app` adds an executable target with the name passed as the first argument # (ConsoleAppExample here). This target is a normal CMake target, but has a lot of extra properties # set up by default. This function accepts many optional arguments. Check the readme at -# `examples/CMake/readme.md` in the JUCE repo for the full list. +# `docs/CMake API.txt` in the JUCE repo for the full list. juce_add_console_app(ConsoleAppExample PRODUCT_NAME "Console App Example") # The name of the final executable, which can differ from the target name diff --git a/examples/CMake/GuiApp/CMakeLists.txt b/examples/CMake/GuiApp/CMakeLists.txt index 7570b0cfa2..4b9df2932b 100644 --- a/examples/CMake/GuiApp/CMakeLists.txt +++ b/examples/CMake/GuiApp/CMakeLists.txt @@ -33,8 +33,8 @@ project(GUI_APP_EXAMPLE VERSION 0.0.1) # `juce_add_gui_app` adds an executable target with the name passed as the first argument # (GuiAppExample here). This target is a normal CMake target, but has a lot of extra properties set -# up by default. This function accepts many optional arguments. Check the readme at `examples/CMake` -# in the JUCE repo for the full list. +# up by default. This function accepts many optional arguments. Check the readme at +# `docs/CMake API.txt` in the JUCE repo for the full list. juce_add_gui_app(GuiAppExample # VERSION ... # Set this if the app version is different to the project version diff --git a/extras/Build/CMake/JUCEUtils.cmake b/extras/Build/CMake/JUCEUtils.cmake index 42295ba02d..9bc55f5615 100644 --- a/extras/Build/CMake/JUCEUtils.cmake +++ b/extras/Build/CMake/JUCEUtils.cmake @@ -21,7 +21,7 @@ # Functions beginning with an underscore should be considered private and susceptible to # change, so don't call them directly. # -# See the readme at `examples/CMake` for more information about CMake usage, +# See the readme at `docs/CMake API.txt` for more information about CMake usage, # including documentation of the public functions in this file. # ==================================================================================================