Files
old-festivalhelper/FestivalHelper/FestivalHelper-Prefix.pch
2014-09-07 07:18:07 +02:00

29 lines
972 B
Plaintext

//
// Prefix header
//
// The contents of this file are implicitly included at the beginning of every source file.
//
#import <Availability.h>
#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
#if(URL_LOCAL==1)
#define SCHEDULE_URL @"http://127.0.0.1:8080/sff2014/schedule.json?local"
#define VENUES_URL @"http://127.0.0.1:8080/sff2014/venues.json?local"
#define FILMS_URL @"http://127.0.0.1:8080/sff2014/films.json?local"
#define ABOUT_URL @"http://127.0.0.1:8080/sff2014/about.json?local"
#else
#define SCHEDULE_URL @"http://localhost:8080/sff2014/schedule.json?remote"
#define VENUES_URL @"http://localhost:8080/sff2014/venues.json?remote"
#define FILMS_URL @"http://localhost:8080/sff2014/films.json?remote"
#define ABOUT_URL @"http://localhost:8080/sff2014/about.json?remote"
#endif