File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22juce_add_gui_app(reTunerApp
33 COMPANY_NAME "Kushview"
44 PRODUCT_NAME "reTuner"
5- VERSION "1.0.0"
65 BUNDLE_ID "net.kushview.reTunerApp"
76 ICON_BIG "retuner-icon.png"
87)
@@ -55,7 +54,8 @@ target_link_libraries(reTunerApp PRIVATE
5554)
5655
5756target_compile_definitions (reTunerApp PRIVATE
58- "RETUNER_APP=1"
57+ RETUNER_APP=1
58+ RETUNER_VERSION=\"${PROJECT_VERSION} \"
5959 ${RETUNER_JUCE_OPTIONS}
6060)
6161
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ class Application : public juce::JUCEApplication {
7676 Application () = default ;
7777
7878 const juce::String getApplicationName () override { return " reTuner" ; }
79- const juce::String getApplicationVersion () override { return " 1.0.0 " ; }
79+ const juce::String getApplicationVersion () override { return RETUNER_VERSION ; }
8080 bool moreThanOneInstanceAllowed () override { return true ; }
8181
8282 void initialise (const juce::String& commandLine) override ;
You can’t perform that action at this time.
0 commit comments