Simple RGB LED controller for Mac OS X
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.pbxproj 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. E9109B111C2AACF400726111 /* SystemInfoKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9109B0B1C2AAC1B00726111 /* SystemInfoKit.framework */; };
  10. E9109B151C2AAEFD00726111 /* SystemInfoKit.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = E9109B0B1C2AAC1B00726111 /* SystemInfoKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  11. E9109B191C2AAFE100726111 /* GPUStats.m in Sources */ = {isa = PBXBuildFile; fileRef = E9109B181C2AAFE100726111 /* GPUStats.m */; };
  12. E9AB18011C29F8CD00BF3C51 /* Serial.m in Sources */ = {isa = PBXBuildFile; fileRef = E9AB18001C29F8CD00BF3C51 /* Serial.m */; };
  13. E9F13E031C28B3D3004C6B95 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F13E021C28B3D3004C6B95 /* AppDelegate.m */; };
  14. E9F13E061C28B3D3004C6B95 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F13E051C28B3D3004C6B95 /* main.m */; };
  15. E9F13E081C28B3D3004C6B95 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E9F13E071C28B3D3004C6B95 /* Assets.xcassets */; };
  16. E9F13E0B1C28B3D3004C6B95 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = E9F13E091C28B3D3004C6B95 /* MainMenu.xib */; };
  17. /* End PBXBuildFile section */
  18. /* Begin PBXContainerItemProxy section */
  19. E9109B0A1C2AAC1B00726111 /* PBXContainerItemProxy */ = {
  20. isa = PBXContainerItemProxy;
  21. containerPortal = E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */;
  22. proxyType = 2;
  23. remoteGlobalIDString = 1D43C4CA1BD49B78001D8A55;
  24. remoteInfo = SystemInfoKit;
  25. };
  26. E9109B0C1C2AAC1B00726111 /* PBXContainerItemProxy */ = {
  27. isa = PBXContainerItemProxy;
  28. containerPortal = E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */;
  29. proxyType = 2;
  30. remoteGlobalIDString = 1D43C50E1BD56B1D001D8A55;
  31. remoteInfo = SystemInfoKitTests;
  32. };
  33. E9109B121C2AAD2E00726111 /* PBXContainerItemProxy */ = {
  34. isa = PBXContainerItemProxy;
  35. containerPortal = E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */;
  36. proxyType = 1;
  37. remoteGlobalIDString = 1D43C4C91BD49B78001D8A55;
  38. remoteInfo = SystemInfoKit;
  39. };
  40. /* End PBXContainerItemProxy section */
  41. /* Begin PBXCopyFilesBuildPhase section */
  42. E9109B141C2AAEEC00726111 /* CopyFiles */ = {
  43. isa = PBXCopyFilesBuildPhase;
  44. buildActionMask = 2147483647;
  45. dstPath = "";
  46. dstSubfolderSpec = 10;
  47. files = (
  48. E9109B151C2AAEFD00726111 /* SystemInfoKit.framework in CopyFiles */,
  49. );
  50. runOnlyForDeploymentPostprocessing = 0;
  51. };
  52. /* End PBXCopyFilesBuildPhase section */
  53. /* Begin PBXFileReference section */
  54. E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SystemInfoKit.xcodeproj; path = JSystemInfoKit/SystemInfoKit.xcodeproj; sourceTree = "<group>"; };
  55. E9109B171C2AAFE100726111 /* GPUStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GPUStats.h; path = CaseLights/GPUStats.h; sourceTree = "<group>"; };
  56. E9109B181C2AAFE100726111 /* GPUStats.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GPUStats.m; path = CaseLights/GPUStats.m; sourceTree = "<group>"; };
  57. E9AB17FF1C29F8CD00BF3C51 /* Serial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Serial.h; path = CaseLights/Serial.h; sourceTree = "<group>"; };
  58. E9AB18001C29F8CD00BF3C51 /* Serial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Serial.m; path = CaseLights/Serial.m; sourceTree = "<group>"; };
  59. E9F13DFE1C28B3D3004C6B95 /* CaseLights.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CaseLights.app; sourceTree = BUILT_PRODUCTS_DIR; };
  60. E9F13E011C28B3D3004C6B95 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  61. E9F13E021C28B3D3004C6B95 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  62. E9F13E051C28B3D3004C6B95 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  63. E9F13E071C28B3D3004C6B95 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  64. E9F13E0A1C28B3D3004C6B95 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
  65. E9F13E0C1C28B3D3004C6B95 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  66. /* End PBXFileReference section */
  67. /* Begin PBXFrameworksBuildPhase section */
  68. E9F13DFB1C28B3D3004C6B95 /* Frameworks */ = {
  69. isa = PBXFrameworksBuildPhase;
  70. buildActionMask = 2147483647;
  71. files = (
  72. E9109B111C2AACF400726111 /* SystemInfoKit.framework in Frameworks */,
  73. );
  74. runOnlyForDeploymentPostprocessing = 0;
  75. };
  76. /* End PBXFrameworksBuildPhase section */
  77. /* Begin PBXGroup section */
  78. E9109B061C2AAC1B00726111 /* Products */ = {
  79. isa = PBXGroup;
  80. children = (
  81. E9109B0B1C2AAC1B00726111 /* SystemInfoKit.framework */,
  82. E9109B0D1C2AAC1B00726111 /* SystemInfoKitTests.xctest */,
  83. );
  84. name = Products;
  85. sourceTree = "<group>";
  86. };
  87. E9109B161C2AAFA200726111 /* LowLevel */ = {
  88. isa = PBXGroup;
  89. children = (
  90. E9AB17FF1C29F8CD00BF3C51 /* Serial.h */,
  91. E9AB18001C29F8CD00BF3C51 /* Serial.m */,
  92. E9109B171C2AAFE100726111 /* GPUStats.h */,
  93. E9109B181C2AAFE100726111 /* GPUStats.m */,
  94. );
  95. name = LowLevel;
  96. path = ..;
  97. sourceTree = "<group>";
  98. };
  99. E9F13DF51C28B3D3004C6B95 = {
  100. isa = PBXGroup;
  101. children = (
  102. E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */,
  103. E9F13E001C28B3D3004C6B95 /* CaseLights */,
  104. E9F13DFF1C28B3D3004C6B95 /* Products */,
  105. );
  106. sourceTree = "<group>";
  107. };
  108. E9F13DFF1C28B3D3004C6B95 /* Products */ = {
  109. isa = PBXGroup;
  110. children = (
  111. E9F13DFE1C28B3D3004C6B95 /* CaseLights.app */,
  112. );
  113. name = Products;
  114. sourceTree = "<group>";
  115. };
  116. E9F13E001C28B3D3004C6B95 /* CaseLights */ = {
  117. isa = PBXGroup;
  118. children = (
  119. E9F13E011C28B3D3004C6B95 /* AppDelegate.h */,
  120. E9F13E021C28B3D3004C6B95 /* AppDelegate.m */,
  121. E9109B161C2AAFA200726111 /* LowLevel */,
  122. E9F13E071C28B3D3004C6B95 /* Assets.xcassets */,
  123. E9F13E091C28B3D3004C6B95 /* MainMenu.xib */,
  124. E9F13E0C1C28B3D3004C6B95 /* Info.plist */,
  125. E9F13E041C28B3D3004C6B95 /* Supporting Files */,
  126. );
  127. path = CaseLights;
  128. sourceTree = "<group>";
  129. };
  130. E9F13E041C28B3D3004C6B95 /* Supporting Files */ = {
  131. isa = PBXGroup;
  132. children = (
  133. E9F13E051C28B3D3004C6B95 /* main.m */,
  134. );
  135. name = "Supporting Files";
  136. sourceTree = "<group>";
  137. };
  138. /* End PBXGroup section */
  139. /* Begin PBXNativeTarget section */
  140. E9F13DFD1C28B3D3004C6B95 /* CaseLights */ = {
  141. isa = PBXNativeTarget;
  142. buildConfigurationList = E9F13E0F1C28B3D3004C6B95 /* Build configuration list for PBXNativeTarget "CaseLights" */;
  143. buildPhases = (
  144. E9AB17FC1C28B43B00BF3C51 /* Increment build number */,
  145. E9F13DFA1C28B3D3004C6B95 /* Sources */,
  146. E9F13DFB1C28B3D3004C6B95 /* Frameworks */,
  147. E9F13DFC1C28B3D3004C6B95 /* Resources */,
  148. E9109B141C2AAEEC00726111 /* CopyFiles */,
  149. );
  150. buildRules = (
  151. );
  152. dependencies = (
  153. E9109B131C2AAD2E00726111 /* PBXTargetDependency */,
  154. );
  155. name = CaseLights;
  156. productName = CaseLights;
  157. productReference = E9F13DFE1C28B3D3004C6B95 /* CaseLights.app */;
  158. productType = "com.apple.product-type.application";
  159. };
  160. /* End PBXNativeTarget section */
  161. /* Begin PBXProject section */
  162. E9F13DF61C28B3D3004C6B95 /* Project object */ = {
  163. isa = PBXProject;
  164. attributes = {
  165. LastUpgradeCheck = 0720;
  166. ORGANIZATIONNAME = xythobuz;
  167. TargetAttributes = {
  168. E9F13DFD1C28B3D3004C6B95 = {
  169. CreatedOnToolsVersion = 7.2;
  170. };
  171. };
  172. };
  173. buildConfigurationList = E9F13DF91C28B3D3004C6B95 /* Build configuration list for PBXProject "CaseLights" */;
  174. compatibilityVersion = "Xcode 3.2";
  175. developmentRegion = English;
  176. hasScannedForEncodings = 0;
  177. knownRegions = (
  178. en,
  179. Base,
  180. );
  181. mainGroup = E9F13DF51C28B3D3004C6B95;
  182. productRefGroup = E9F13DFF1C28B3D3004C6B95 /* Products */;
  183. projectDirPath = "";
  184. projectReferences = (
  185. {
  186. ProductGroup = E9109B061C2AAC1B00726111 /* Products */;
  187. ProjectRef = E9109B051C2AAC1B00726111 /* SystemInfoKit.xcodeproj */;
  188. },
  189. );
  190. projectRoot = "";
  191. targets = (
  192. E9F13DFD1C28B3D3004C6B95 /* CaseLights */,
  193. );
  194. };
  195. /* End PBXProject section */
  196. /* Begin PBXReferenceProxy section */
  197. E9109B0B1C2AAC1B00726111 /* SystemInfoKit.framework */ = {
  198. isa = PBXReferenceProxy;
  199. fileType = wrapper.framework;
  200. path = SystemInfoKit.framework;
  201. remoteRef = E9109B0A1C2AAC1B00726111 /* PBXContainerItemProxy */;
  202. sourceTree = BUILT_PRODUCTS_DIR;
  203. };
  204. E9109B0D1C2AAC1B00726111 /* SystemInfoKitTests.xctest */ = {
  205. isa = PBXReferenceProxy;
  206. fileType = wrapper.cfbundle;
  207. path = SystemInfoKitTests.xctest;
  208. remoteRef = E9109B0C1C2AAC1B00726111 /* PBXContainerItemProxy */;
  209. sourceTree = BUILT_PRODUCTS_DIR;
  210. };
  211. /* End PBXReferenceProxy section */
  212. /* Begin PBXResourcesBuildPhase section */
  213. E9F13DFC1C28B3D3004C6B95 /* Resources */ = {
  214. isa = PBXResourcesBuildPhase;
  215. buildActionMask = 2147483647;
  216. files = (
  217. E9F13E081C28B3D3004C6B95 /* Assets.xcassets in Resources */,
  218. E9F13E0B1C28B3D3004C6B95 /* MainMenu.xib in Resources */,
  219. );
  220. runOnlyForDeploymentPostprocessing = 0;
  221. };
  222. /* End PBXResourcesBuildPhase section */
  223. /* Begin PBXShellScriptBuildPhase section */
  224. E9AB17FC1C28B43B00BF3C51 /* Increment build number */ = {
  225. isa = PBXShellScriptBuildPhase;
  226. buildActionMask = 2147483647;
  227. files = (
  228. );
  229. inputPaths = (
  230. );
  231. name = "Increment build number";
  232. outputPaths = (
  233. );
  234. runOnlyForDeploymentPostprocessing = 0;
  235. shellPath = /bin/sh;
  236. shellScript = "#!/bin/sh\n\nplist=\"${PROJECT_DIR}/${INFOPLIST_FILE}\"\ndir=\"$(dirname \"$plist\")\"\n\n# Only increment the build number if source files have changed\nif [ -n \"$(find \"$dir\" \\! -path \"*xcuserdata*\" \\! -path \"*.git*\" \\! -name .DS_Store \\! -path \"*Website*\" -newer \"$plist\")\" ]; then\nbuildnum=$(/usr/libexec/Plistbuddy -c \"Print CFBundleVersion\" \"$plist\")\nif [ -z \"$buildnum\" ]; then\necho \"No build number in $plist\"\nexit 2\nfi\nbuildnum=$(expr $buildnum + 1)\n/usr/libexec/Plistbuddy -c \"Set CFBundleVersion $buildnum\" \"$plist\"\necho \"Incremented build number to $buildnum\"\nelse\necho \"Not incrementing build number as source files have not changed\"\nfi\n";
  237. };
  238. /* End PBXShellScriptBuildPhase section */
  239. /* Begin PBXSourcesBuildPhase section */
  240. E9F13DFA1C28B3D3004C6B95 /* Sources */ = {
  241. isa = PBXSourcesBuildPhase;
  242. buildActionMask = 2147483647;
  243. files = (
  244. E9AB18011C29F8CD00BF3C51 /* Serial.m in Sources */,
  245. E9109B191C2AAFE100726111 /* GPUStats.m in Sources */,
  246. E9F13E061C28B3D3004C6B95 /* main.m in Sources */,
  247. E9F13E031C28B3D3004C6B95 /* AppDelegate.m in Sources */,
  248. );
  249. runOnlyForDeploymentPostprocessing = 0;
  250. };
  251. /* End PBXSourcesBuildPhase section */
  252. /* Begin PBXTargetDependency section */
  253. E9109B131C2AAD2E00726111 /* PBXTargetDependency */ = {
  254. isa = PBXTargetDependency;
  255. name = SystemInfoKit;
  256. targetProxy = E9109B121C2AAD2E00726111 /* PBXContainerItemProxy */;
  257. };
  258. /* End PBXTargetDependency section */
  259. /* Begin PBXVariantGroup section */
  260. E9F13E091C28B3D3004C6B95 /* MainMenu.xib */ = {
  261. isa = PBXVariantGroup;
  262. children = (
  263. E9F13E0A1C28B3D3004C6B95 /* Base */,
  264. );
  265. name = MainMenu.xib;
  266. sourceTree = "<group>";
  267. };
  268. /* End PBXVariantGroup section */
  269. /* Begin XCBuildConfiguration section */
  270. E9F13E0D1C28B3D3004C6B95 /* Debug */ = {
  271. isa = XCBuildConfiguration;
  272. buildSettings = {
  273. ALWAYS_SEARCH_USER_PATHS = NO;
  274. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  275. CLANG_CXX_LIBRARY = "libc++";
  276. CLANG_ENABLE_MODULES = YES;
  277. CLANG_ENABLE_OBJC_ARC = YES;
  278. CLANG_WARN_BOOL_CONVERSION = YES;
  279. CLANG_WARN_CONSTANT_CONVERSION = YES;
  280. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  281. CLANG_WARN_EMPTY_BODY = YES;
  282. CLANG_WARN_ENUM_CONVERSION = YES;
  283. CLANG_WARN_INT_CONVERSION = YES;
  284. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  285. CLANG_WARN_UNREACHABLE_CODE = YES;
  286. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  287. CODE_SIGN_IDENTITY = "-";
  288. COPY_PHASE_STRIP = NO;
  289. DEBUG_INFORMATION_FORMAT = dwarf;
  290. ENABLE_STRICT_OBJC_MSGSEND = YES;
  291. ENABLE_TESTABILITY = YES;
  292. GCC_C_LANGUAGE_STANDARD = gnu99;
  293. GCC_DYNAMIC_NO_PIC = NO;
  294. GCC_NO_COMMON_BLOCKS = YES;
  295. GCC_OPTIMIZATION_LEVEL = 0;
  296. GCC_PREPROCESSOR_DEFINITIONS = (
  297. "DEBUG=1",
  298. "$(inherited)",
  299. );
  300. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  301. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  302. GCC_WARN_UNDECLARED_SELECTOR = YES;
  303. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  304. GCC_WARN_UNUSED_FUNCTION = YES;
  305. GCC_WARN_UNUSED_VARIABLE = YES;
  306. MACOSX_DEPLOYMENT_TARGET = 10.8;
  307. MTL_ENABLE_DEBUG_INFO = YES;
  308. ONLY_ACTIVE_ARCH = YES;
  309. SDKROOT = macosx;
  310. };
  311. name = Debug;
  312. };
  313. E9F13E0E1C28B3D3004C6B95 /* Release */ = {
  314. isa = XCBuildConfiguration;
  315. buildSettings = {
  316. ALWAYS_SEARCH_USER_PATHS = NO;
  317. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  318. CLANG_CXX_LIBRARY = "libc++";
  319. CLANG_ENABLE_MODULES = YES;
  320. CLANG_ENABLE_OBJC_ARC = YES;
  321. CLANG_WARN_BOOL_CONVERSION = YES;
  322. CLANG_WARN_CONSTANT_CONVERSION = YES;
  323. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  324. CLANG_WARN_EMPTY_BODY = YES;
  325. CLANG_WARN_ENUM_CONVERSION = YES;
  326. CLANG_WARN_INT_CONVERSION = YES;
  327. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  328. CLANG_WARN_UNREACHABLE_CODE = YES;
  329. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  330. CODE_SIGN_IDENTITY = "-";
  331. COPY_PHASE_STRIP = NO;
  332. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  333. ENABLE_NS_ASSERTIONS = NO;
  334. ENABLE_STRICT_OBJC_MSGSEND = YES;
  335. GCC_C_LANGUAGE_STANDARD = gnu99;
  336. GCC_NO_COMMON_BLOCKS = YES;
  337. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  338. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  339. GCC_WARN_UNDECLARED_SELECTOR = YES;
  340. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  341. GCC_WARN_UNUSED_FUNCTION = YES;
  342. GCC_WARN_UNUSED_VARIABLE = YES;
  343. MACOSX_DEPLOYMENT_TARGET = 10.8;
  344. MTL_ENABLE_DEBUG_INFO = NO;
  345. SDKROOT = macosx;
  346. };
  347. name = Release;
  348. };
  349. E9F13E101C28B3D3004C6B95 /* Debug */ = {
  350. isa = XCBuildConfiguration;
  351. buildSettings = {
  352. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  353. COMBINE_HIDPI_IMAGES = YES;
  354. INFOPLIST_FILE = CaseLights/Info.plist;
  355. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
  356. MACOSX_DEPLOYMENT_TARGET = 10.8;
  357. PRODUCT_BUNDLE_IDENTIFIER = de.xythobuz.CaseLights;
  358. PRODUCT_NAME = "$(TARGET_NAME)";
  359. USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/SystemInfoKit/**";
  360. };
  361. name = Debug;
  362. };
  363. E9F13E111C28B3D3004C6B95 /* Release */ = {
  364. isa = XCBuildConfiguration;
  365. buildSettings = {
  366. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  367. COMBINE_HIDPI_IMAGES = YES;
  368. HEADER_SEARCH_PATHS = "";
  369. INFOPLIST_FILE = CaseLights/Info.plist;
  370. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
  371. MACOSX_DEPLOYMENT_TARGET = 10.8;
  372. PRODUCT_BUNDLE_IDENTIFIER = de.xythobuz.CaseLights;
  373. PRODUCT_NAME = "$(TARGET_NAME)";
  374. USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/SystemInfoKit/**";
  375. };
  376. name = Release;
  377. };
  378. /* End XCBuildConfiguration section */
  379. /* Begin XCConfigurationList section */
  380. E9F13DF91C28B3D3004C6B95 /* Build configuration list for PBXProject "CaseLights" */ = {
  381. isa = XCConfigurationList;
  382. buildConfigurations = (
  383. E9F13E0D1C28B3D3004C6B95 /* Debug */,
  384. E9F13E0E1C28B3D3004C6B95 /* Release */,
  385. );
  386. defaultConfigurationIsVisible = 0;
  387. defaultConfigurationName = Release;
  388. };
  389. E9F13E0F1C28B3D3004C6B95 /* Build configuration list for PBXNativeTarget "CaseLights" */ = {
  390. isa = XCConfigurationList;
  391. buildConfigurations = (
  392. E9F13E101C28B3D3004C6B95 /* Debug */,
  393. E9F13E111C28B3D3004C6B95 /* Release */,
  394. );
  395. defaultConfigurationIsVisible = 0;
  396. defaultConfigurationName = Release;
  397. };
  398. /* End XCConfigurationList section */
  399. };
  400. rootObject = E9F13DF61C28B3D3004C6B95 /* Project object */;
  401. }