mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-15 00:24:19 +00:00
Removed old Juce projects.
This commit is contained in:
parent
89783970a8
commit
0cfcfc3ba6
9 changed files with 0 additions and 15412 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -1,25 +0,0 @@
|
|||
# Makefile autogenerated by premake
|
||||
# Don't edit this file! Instead edit `premake.lua` then rerun `make`
|
||||
# Options:
|
||||
# CONFIG=[Debug|Release]
|
||||
|
||||
ifndef CONFIG
|
||||
CONFIG=Debug
|
||||
endif
|
||||
|
||||
export CONFIG
|
||||
|
||||
.PHONY: all clean JUCE
|
||||
|
||||
all: JUCE
|
||||
|
||||
Makefile: juce_premake.lua
|
||||
@echo ==== Regenerating Makefiles ====
|
||||
@premake --file $^ --cc gcc --target gnu
|
||||
|
||||
JUCE:
|
||||
@echo ==== Building JUCE ====
|
||||
@$(MAKE) --no-print-directory -C . -f JUCE.make
|
||||
|
||||
clean:
|
||||
@$(MAKE) --no-print-directory -C . -f JUCE.make clean
|
||||
|
|
@ -1,131 +0,0 @@
|
|||
|
||||
project.name = "JUCE"
|
||||
project.bindir = "../../bin"
|
||||
project.libdir = "../../bin"
|
||||
|
||||
project.configs = { "Debug", "Release" }
|
||||
|
||||
package = newpackage()
|
||||
package.name = "JUCE"
|
||||
package.kind = "lib"
|
||||
package.language = "c++"
|
||||
|
||||
package.objdir = "../../bin/intermediate_linux/"
|
||||
package.config["Debug"].objdir = "../../bin/intermediate_linux/Debug"
|
||||
package.config["Release"].objdir = "../../bin/intermediate_linux/Release"
|
||||
|
||||
package.config["Debug"].target = "juce_debug"
|
||||
package.config["Release"].target = "juce"
|
||||
|
||||
package.config["Debug"].defines = { "LINUX=1", "DEBUG=1", "_DEBUG=1" };
|
||||
package.config["Debug"].buildoptions = { "-D_DEBUG -ggdb -Wall" }
|
||||
|
||||
package.config["Release"].defines = { "LINUX=1", "NDEBUG=1" };
|
||||
package.config["Release"].buildoptions = { "-fvisibility=hidden" }
|
||||
package.config["Release"].buildflags = { "extra-warnings", "optimize-speed", "no-symbols" }
|
||||
|
||||
|
||||
package.includepaths = {
|
||||
"../../",
|
||||
"/usr/include",
|
||||
"/usr/include/freetype2"
|
||||
}
|
||||
|
||||
package.linkflags = { "static-runtime" }
|
||||
|
||||
|
||||
package.files = { matchfiles (
|
||||
"../../src/*.h",
|
||||
"../../src/core/*.cpp",
|
||||
"../../src/core/*.h",
|
||||
"../../src/cryptography/*.cpp",
|
||||
"../../src/cryptography/*.h",
|
||||
"../../src/containers/*.cpp",
|
||||
"../../src/containers/*.h",
|
||||
"../../src/io/*.cpp",
|
||||
"../../src/io/*.h",
|
||||
"../../src/io/files/*.cpp",
|
||||
"../../src/io/files/*.h",
|
||||
"../../src/io/network/*.cpp",
|
||||
"../../src/io/network/*.h",
|
||||
"../../src/io/streams/*.cpp",
|
||||
"../../src/io/streams/*.h",
|
||||
"../../src/text/*.cpp",
|
||||
"../../src/text/*.h",
|
||||
"../../src/threads/*.cpp",
|
||||
"../../src/threads/*.h",
|
||||
"../../src/application/*.cpp",
|
||||
"../../src/application/*.h",
|
||||
"../../src/audio/*.cpp",
|
||||
"../../src/audio/*.h",
|
||||
"../../src/audio/dsp/*.cpp",
|
||||
"../../src/audio/dsp/*.h",
|
||||
"../../src/audio/midi/*.cpp",
|
||||
"../../src/audio/midi/*.h",
|
||||
"../../src/audio/processors/*.cpp",
|
||||
"../../src/audio/processors/*.h",
|
||||
"../../src/audio/plugins/*.cpp",
|
||||
"../../src/audio/plugins/*.h",
|
||||
"../../src/audio/plugins/formats/*.cpp",
|
||||
"../../src/audio/plugins/formats/*.h",
|
||||
"../../src/audio/audio_file_formats/*.cpp",
|
||||
"../../src/audio/audio_file_formats/*.h",
|
||||
"../../src/audio/audio_sources/*.cpp",
|
||||
"../../src/audio/audio_sources/*.h",
|
||||
"../../src/audio/devices/*.cpp",
|
||||
"../../src/audio/devices/*.h",
|
||||
"../../src/audio/synthesisers/*.cpp",
|
||||
"../../src/audio/synthesisers/*.h",
|
||||
"../../src/events/*.cpp",
|
||||
"../../src/events/*.h",
|
||||
"../../src/utilities/*.cpp",
|
||||
"../../src/utilities/*.h",
|
||||
"../../src/gui/graphics/brushes/*.cpp",
|
||||
"../../src/gui/graphics/brushes/*.h",
|
||||
"../../src/gui/graphics/colour/*.cpp",
|
||||
"../../src/gui/graphics/colour/*.h",
|
||||
"../../src/gui/graphics/contexts/*.cpp",
|
||||
"../../src/gui/graphics/contexts/*.h",
|
||||
"../../src/gui/graphics/drawables/*.cpp",
|
||||
"../../src/gui/graphics/drawables/*.h",
|
||||
"../../src/gui/graphics/effects/*.cpp",
|
||||
"../../src/gui/graphics/effects/*.h",
|
||||
"../../src/gui/graphics/fonts/*.cpp",
|
||||
"../../src/gui/graphics/fonts/*.h",
|
||||
"../../src/gui/graphics/geometry/*.cpp",
|
||||
"../../src/gui/graphics/geometry/*.h",
|
||||
"../../src/gui/graphics/imaging/*.cpp",
|
||||
"../../src/gui/graphics/imaging/*.h",
|
||||
"../../src/gui/graphics/imaging/image_file_formats/*.cpp",
|
||||
"../../src/gui/graphics/imaging/image_file_formats/*.h",
|
||||
"../../src/gui/components/*.cpp",
|
||||
"../../src/gui/components/*.h",
|
||||
"../../src/gui/components/buttons/*.cpp",
|
||||
"../../src/gui/components/buttons/*.h",
|
||||
"../../src/gui/components/controls/*.cpp",
|
||||
"../../src/gui/components/controls/*.h",
|
||||
"../../src/gui/components/code_editor/*.cpp",
|
||||
"../../src/gui/components/code_editor/*.h",
|
||||
"../../src/gui/components/filebrowser/*.cpp",
|
||||
"../../src/gui/components/filebrowser/*.h",
|
||||
"../../src/gui/components/keyboard/*.cpp",
|
||||
"../../src/gui/components/keyboard/*.h",
|
||||
"../../src/gui/components/layout/*.cpp",
|
||||
"../../src/gui/components/layout/*.h",
|
||||
"../../src/gui/components/lookandfeel/*.cpp",
|
||||
"../../src/gui/components/lookandfeel/*.h",
|
||||
"../../src/gui/components/menus/*.cpp",
|
||||
"../../src/gui/components/menus/*.h",
|
||||
"../../src/gui/components/mouse/*.cpp",
|
||||
"../../src/gui/components/mouse/*.h",
|
||||
"../../src/gui/components/properties/*.cpp",
|
||||
"../../src/gui/components/properties/*.h",
|
||||
"../../src/gui/components/special/*.cpp",
|
||||
"../../src/gui/components/special/*.h",
|
||||
"../../src/gui/components/windows/*.cpp",
|
||||
"../../src/gui/components/windows/*.h",
|
||||
"../../src/native/linux/*.h",
|
||||
"../../src/native/linux/*.cpp",
|
||||
"../../src/native/juce_linux_NativeCode.cpp"
|
||||
)
|
||||
}
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/bash
|
||||
premake --file juce_premake.lua --cc gcc --target gnu
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,14 +0,0 @@
|
|||
|
||||
ARCHS = i386 ppc
|
||||
|
||||
// These settings let you build for compatibility with 10.3 onwards.
|
||||
|
||||
MACOSX_DEPLOYMENT_TARGET_ppc = 10.3
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.4
|
||||
|
||||
// In XCode 3, this is the best SDK to use..
|
||||
SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk
|
||||
|
||||
// (if you're building in XCode 2.5, you might need to use this line
|
||||
// instead of the 10.5 line above..)
|
||||
//SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue