|
-
- --=======================================================================================--
-
- function make_library_project(name)
- project.name = name
- project.bindir = "../.."
- project.libdir = project.bindir
- project.configs = { "Release", "Debug" }
-
- package = newpackage()
- package.name = project.name
- package.kind = "lib"
- package.language = "c++"
-
- package.target = project.name
- package.objdir = "intermediate"
- package.defines = {}
- package.buildoptions = { "-fPIC", "-DPIC", "-Wall", "-pthread",
- "-DJUCE_APP_CONFIG_HEADER='<AppConfig.h>'",
- "-Wno-multichar", "-Wno-unused-but-set-variable", "-Wno-unused-function", "-Wno-strict-overflow",
- os.getenv("CXXFLAGS") }
-
- package.config["Release"].target = project.name
- package.config["Release"].objdir = "intermediate/Release"
- package.config["Release"].defines = { "NDEBUG=1" }
- package.config["Release"].buildoptions = { "-O3", "-fvisibility=hidden", "-fvisibility-inlines-hidden" }
-
- if (not (os.getenv("NOOPTIMIZATIONS") or os.getenv("LINUX_EMBED"))) then
- package.config["Release"].buildoptions = {
- package.config["Release"].buildoptions,
- "-mtune=generic", "-msse", "-msse2"
- }
- end
-
- if (not macosx) then
- package.config["Release"].buildoptions = { package.config["Release"].buildoptions, "-fdata-sections", "-ffunction-sections" }
- end
-
- package.config["Debug"].target = project.name .. "_debug"
- package.config["Debug"].objdir = "intermediate/Debug"
- package.config["Debug"].defines = { "DEBUG=1", "_DEBUG=1" }
- package.config["Debug"].buildoptions = { "-O0", "-ggdb" }
-
- if (windows) then
- package.defines = { "WINDOWS=1" }
- package.buildoptions = { package.buildoptions, "-fpermissive", "-std=c++0x" }
- elseif (macosx) then
- package.defines = { "MAC=1" }
- package.buildoptions = { package.buildoptions, "-ObjC++" }
- elseif (os.getenv("LINUX_EMBED")) then
- package.defines = { "LINUX=1" }
- package.buildoptions = { package.buildoptions, "-DJUCE_AUDIOPROCESSOR_NO_GUI=1", "-std=c++0x" }
- else
- package.defines = { "LINUX=1" }
- package.buildoptions = { package.buildoptions, "`pkg-config --cflags alsa freetype2 x11 xext`", "-std=c++0x" }
- end
-
- return package
- end
-
- --=======================================================================================--
-
- function make_plugin_project(name, spec)
- if (spec == "LV2") then
- project.name = name .. ".lv2/" .. name
- project.bindir = "../../../bin/lv2"
- elseif (spec == "VST") then
- project.name = name
- project.bindir = "../../../bin/vst"
- end
-
- project.libdir = project.bindir
- project.configs = { "Release", "Debug" }
-
- package = newpackage()
- package.name = project.name
- package.kind = "dll"
- package.language = "c++"
-
- if (spec == "LV2") then
- package.defines = { "DISTRHO_PLUGIN_TARGET_LV2=1", "JucePlugin_Build_AU=0", "JucePlugin_Build_LV2=1", "JucePlugin_Build_RTAS=0", "JucePlugin_Build_VST=0", "JucePlugin_Build_Standalone=0" }
- elseif (spec == "VST") then
- package.defines = { "DISTRHO_PLUGIN_TARGET_VST=1", "JucePlugin_Build_AU=0", "JucePlugin_Build_LV2=0", "JucePlugin_Build_RTAS=0", "JucePlugin_Build_VST=1", "JucePlugin_Build_Standalone=0" }
- end
-
- package.target = project.name
- package.targetprefix = ""
- package.objdir = "intermediate"
- package.buildoptions = { "-Wall", "-Werror=deprecated-declarations", "-pthread",
- "-DJUCE_APP_CONFIG_HEADER='<AppConfig.h>'",
- os.getenv("CXXFLAGS") }
- package.links = {}
- package.linkoptions = { "-pthread", os.getenv("LDFLAGS") }
-
- package.config["Release"].target = project.name
- package.config["Release"].objdir = "intermediate/Release"
- package.config["Release"].defines = { "NDEBUG=1", "CONFIGURATION=\"Release\"" }
- package.config["Release"].buildoptions = { "-O3", "-ffast-math", "-fomit-frame-pointer", "-fvisibility=hidden", "-fvisibility-inlines-hidden" }
- package.config["Release"].links = {}
-
- if (not (os.getenv("NOOPTIMIZATIONS") or os.getenv("LINUX_EMBED"))) then
- package.config["Release"].buildoptions = {
- package.config["Release"].buildoptions,
- "-mtune=generic", "-msse", "-msse2", "-mfpmath=sse"
- }
- end
-
- if (not macosx) then
- package.linkoptions = { package.linkoptions, "-Wl,--no-undefined" }
- package.config["Release"].buildoptions = { package.config["Release"].buildoptions, "-fdata-sections", "-ffunction-sections" }
- package.config["Release"].linkoptions = { "-fdata-sections", "-ffunction-sections", "-Wl,--gc-sections", "-Wl,--strip-all" }
- end
-
- package.config["Debug"].target = project.name .. "_debug"
- package.config["Debug"].objdir = "intermediate/Debug"
- package.config["Debug"].defines = { "DEBUG=1", "_DEBUG=1", "CONFIGURATION=\"Debug\"" }
- package.config["Debug"].buildoptions = { "-O0", "-ggdb" }
- package.config["Debug"].links = {}
-
- package.includepaths = {
- "../source",
- "../../../libs/drowaudio/source",
- "../../../libs/juced/source",
- "../../../libs/juce-legacy/source",
- "../../../libs/juce-legacy/source/modules",
- "../../../libs/juce-plugin",
- "../../../libs/juce-plugin/juce-legacy"
- }
-
- package.libpaths = {
- "../../../libs"
- }
-
- if (windows) then
- package.defines = { package.defines, "WINDOWS=1", "BINTYPE=\"Windows-" .. spec .. "\"" }
- package.buildoptions = { package.buildoptions, "-fpermissive", "-std=c++0x" }
- elseif (macosx) then
- package.defines = { package.defines, "MAC=1", "BINTYPE=\"Mac-" .. spec .. "\"" }
- package.buildoptions = { package.buildoptions, "-ObjC++" }
- package.linkoptions = { package.linkoptions, "-dynamiclib" }
- package.targetextension = "dylib"
- else
- package.defines = { package.defines, "LINUX=1", "BINTYPE=\"Linux-" .. spec .. "\"" }
- package.buildoptions = { package.buildoptions, "-std=c++0x" }
- end
-
- if (os.getenv("LINUX_EMBED")) then
- package.buildoptions = { package.buildoptions, "-DJUCE_AUDIOPROCESSOR_NO_GUI=1" }
- end
-
- return package
- end
-
- --=======================================================================================--
-
- function make_juce_lv2_project(name)
- package = make_plugin_project(name, "LV2")
-
- package.config["Release"].links = { "juce-legacy" }
- package.config["Debug"].links = { "juce-legacy_debug" }
-
- if (windows) then
- package.links = { "comdlg32", "gdi32", "imm32", "ole32", "oleaut32", "shlwapi", "uuid", "version", "winmm", "wininet", "ws2_32" }
- elseif (macosx) then
- package.linkoptions = { package.linkoptions,
- "-framework Accelerate", "-framework AudioToolbox", "-framework AudioUnit", "-framework Carbon", "-framework Cocoa",
- "-framework CoreAudio", "-framework CoreAudioKit", "-framework CoreMIDI", "-framework IOKit", "-framework QuartzCore", "-framework WebKit" }
- elseif (os.getenv("LINUX_EMBED")) then
- package.links = { "dl", "rt" }
- else
- package.links = { "dl", "rt" }
- package.linkoptions = { package.linkoptions, "`pkg-config --libs freetype2 x11 xext`" }
-
- if (name == "drumsynth" or name == "eqinox" or name == "Dexed") then
- package.linkoptions = { package.linkoptions, "`pkg-config --libs alsa`" }
- else
- package.config["Debug"].linkoptions = { "`pkg-config --libs alsa`" }
- end
- end
-
- return package
- end
-
- function make_juce_vst_project(name)
- package = make_plugin_project(name, "VST")
-
- package.config["Release"].links = { "juce-legacy" }
- package.config["Debug"].links = { "juce-legacy_debug" }
-
- package.buildoptions = {
- package.buildoptions,
- "-Wno-multichar",
- "-Wno-write-strings"
- }
-
- package.includepaths = {
- package.includepaths,
- "../../../sdks/vstsdk2.4"
- }
-
- if (windows) then
- package.links = { "comdlg32", "gdi32", "imm32", "ole32", "oleaut32", "shlwapi", "uuid", "version", "winmm", "wininet", "ws2_32" }
- elseif (macosx) then
- package.linkoptions = { package.linkoptions,
- "-framework Accelerate", "-framework AudioToolbox", "-framework AudioUnit", "-framework Carbon", "-framework Cocoa",
- "-framework CoreAudio", "-framework CoreAudioKit", "-framework CoreMIDI", "-framework IOKit", "-framework QuartzCore", "-framework WebKit" }
- else
- package.links = { "dl", "rt" }
- package.linkoptions = { package.linkoptions, "`pkg-config --libs freetype2 x11 xext`" }
-
- if (name == "drumsynth" or name == "eqinox" or name == "Dexed") then
- package.linkoptions = { package.linkoptions, "`pkg-config --libs alsa`" }
- else
- package.config["Debug"].linkoptions = { "`pkg-config --libs alsa`" }
- end
- end
-
- return package
- end
-
- --=======================================================================================--
|