mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
XcodeCapp 4.0 is a major release of our beloved tool. In a nutshell it: - allows to manage multiple projects simultaneously - allows to follow operations and cancel them - has a per project Error and Warning reporting - supports capp_env as you can define additional paths and objj include path per project - much more things
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
//
|
|
// Release.xcconfig
|
|
// XcodeCapp
|
|
//
|
|
// Created by Aparajita on 4/18/13.
|
|
//
|
|
//
|
|
|
|
//:configuration = Release
|
|
ARCHS = $(ARCHS_STANDARD_64_BIT)
|
|
SDKROOT = macosx
|
|
ONLY_ACTIVE_ARCH = YES
|
|
DEBUG_INFORMATION_FORMAT = dwarf
|
|
COMBINE_HIDPI_IMAGES = YES
|
|
INSTALL_PATH = $(LOCAL_APPS_DIR)
|
|
MACOSX_DEPLOYMENT_TARGET = 10.10
|
|
COPY_PHASE_STRIP = YES
|
|
INFOPLIST_FILE = XcodeCapp/Info.plist
|
|
PRODUCT_NAME = XcodeCapp
|
|
ALWAYS_SEARCH_USER_PATHS = NO
|
|
FRAMEWORK_SEARCH_PATHS = $(inherited) "$(SRCROOT)/XcodeCapp"
|
|
GCC_OPTIMIZATION_LEVEL = s
|
|
CLANG_ENABLE_OBJC_ARC = YES
|
|
GCC_PRECOMPILE_PREFIX_HEADER = YES
|
|
GCC_PREFIX_HEADER = XcodeCapp/XcodeCapp-Prefix.pch
|
|
GCC_PREPROCESSOR_DEFINITIONS =
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES
|
|
GCC_WARN_UNUSED_VARIABLE = YES
|
|
WRAPPER_EXTENSION = app
|
|
GCC_C_LANGUAGE_STANDARD = gnu99
|
|
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
|
|
CLANG_CXX_LIBRARY = libc++
|
|
CLANG_WARN_EMPTY_BODY = YES
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
|
|
CLANG_WARN_ENUM_CONVERSION = YES
|
|
CLANG_WARN_INT_CONVERSION = YES
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES
|
|
GCC_WARN_UNUSED_VARIABLE = YES
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
|