Browse Source

Add a few more *.mm file variants

Signed-off-by: falkTX <falktx@falktx.com>
pull/1780/head
falkTX 1 year ago
parent
commit
7a59c68bbb
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
10 changed files with 130 additions and 3 deletions
  1. +1
    -1
      source/backend/CarlaStandalone.cpp
  2. +18
    -0
      source/backend/CarlaStandalone.mm
  3. +18
    -0
      source/backend/plugin/CarlaPluginCLAP.mm
  4. +1
    -1
      source/backend/plugin/CarlaPluginVST2.cpp
  5. +18
    -0
      source/backend/plugin/CarlaPluginVST2.mm
  6. +18
    -0
      source/backend/plugin/CarlaPluginVST3.mm
  7. +1
    -1
      source/bridges-plugin/CarlaBridgePlugin.cpp
  8. +18
    -0
      source/bridges-plugin/CarlaBridgePlugin.mm
  9. +18
    -0
      source/discovery/carla-discovery.mm
  10. +19
    -0
      source/modules/water/water.files.mm

+ 1
- 1
source/backend/CarlaStandalone.cpp View File

@@ -1,6 +1,6 @@
/* /*
* Carla Standalone * Carla Standalone
* Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as


+ 18
- 0
source/backend/CarlaStandalone.mm View File

@@ -0,0 +1,18 @@
/*
* Carla Standalone
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaStandalone.cpp"

+ 18
- 0
source/backend/plugin/CarlaPluginCLAP.mm View File

@@ -0,0 +1,18 @@
/*
* Carla CLAP Plugin
* Copyright (C) 2022-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaPluginCLAP.cpp"

+ 1
- 1
source/backend/plugin/CarlaPluginVST2.cpp View File

@@ -1,5 +1,5 @@
/* /*
* Carla VST Plugin
* Carla VST2 Plugin
* Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com> * Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or


+ 18
- 0
source/backend/plugin/CarlaPluginVST2.mm View File

@@ -0,0 +1,18 @@
/*
* Carla VST2 Plugin
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaPluginVST2.cpp"

+ 18
- 0
source/backend/plugin/CarlaPluginVST3.mm View File

@@ -0,0 +1,18 @@
/*
* Carla VST3 Plugin
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaPluginVST3.cpp"

+ 1
- 1
source/bridges-plugin/CarlaBridgePlugin.cpp View File

@@ -1,6 +1,6 @@
/* /*
* Carla Bridge Plugin * Carla Bridge Plugin
* Copyright (C) 2012-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2012-2023 Filipe Coelho <falktx@falktx.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as


+ 18
- 0
source/bridges-plugin/CarlaBridgePlugin.mm View File

@@ -0,0 +1,18 @@
/*
* Carla Bridge Plugin
* Copyright (C) 2012-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaBridgePlugin.cpp"

+ 18
- 0
source/discovery/carla-discovery.mm View File

@@ -0,0 +1,18 @@
/*
* Carla Plugin discovery
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "carla-discovery.cpp"

+ 19
- 0
source/modules/water/water.files.mm View File

@@ -0,0 +1,19 @@
/*
* Cross-platform C++ library for Carla, based on Juce v4
* Copyright (C) 2015 ROLI Ltd.
* Copyright (C) 2017-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "water.files.cpp"

Loading…
Cancel
Save