1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Fix references to docs/CMake API.txt

This commit is contained in:
reuk 2020-06-01 09:59:48 +01:00
parent 606e8a509b
commit 074f5077fc
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
5 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ JUCE forum to discuss the new features.__
## Getting Started with CMake ## Getting Started with CMake
For comprehensive documentation on JUCE's CMake API, see 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 ### Building Examples

View file

@ -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 # (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 # 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. # 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 juce_add_plugin(AudioPluginExample
# VERSION ... # Set this if the plugin version is different to the project version # VERSION ... # Set this if the plugin version is different to the project version

View file

@ -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 # `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 # (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 # 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 juce_add_console_app(ConsoleAppExample
PRODUCT_NAME "Console App Example") # The name of the final executable, which can differ from the target name PRODUCT_NAME "Console App Example") # The name of the final executable, which can differ from the target name

View file

@ -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 # `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 # (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` # up by default. This function accepts many optional arguments. Check the readme at
# in the JUCE repo for the full list. # `docs/CMake API.txt` in the JUCE repo for the full list.
juce_add_gui_app(GuiAppExample juce_add_gui_app(GuiAppExample
# VERSION ... # Set this if the app version is different to the project version # VERSION ... # Set this if the app version is different to the project version

View file

@ -21,7 +21,7 @@
# Functions beginning with an underscore should be considered private and susceptible to # Functions beginning with an underscore should be considered private and susceptible to
# change, so don't call them directly. # 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. # including documentation of the public functions in this file.
# ================================================================================================== # ==================================================================================================