1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Updated main README with CMake support info and changed docs extension from .txt to .md

This commit is contained in:
ed 2020-06-28 09:34:54 +01:00
parent 0d410ef3e6
commit 67925d384f
31 changed files with 154 additions and 98 deletions

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
# 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 `docs/CMake API.txt` in the JUCE repo for the full list.
# Check the readme at `docs/CMake API.md` 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

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
# (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
# `docs/CMake API.txt` in the JUCE repo for the full list.
# `docs/CMake API.md` 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

View file

@ -34,7 +34,7 @@ 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
# `docs/CMake API.txt` in the JUCE repo for the full list.
# `docs/CMake API.md` 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