Browse Source

Fix for command line build with xcodebuild

Thomas Buck 8 years ago
parent
commit
6702662589
3 changed files with 4 additions and 4 deletions
  1. 2
    2
      CaseLights.xcodeproj/project.pbxproj
  2. 1
    1
      CaseLights/AppDelegate.m
  3. 1
    1
      CaseLights/Info.plist

+ 2
- 2
CaseLights.xcodeproj/project.pbxproj View File

@@ -371,7 +371,7 @@
371 371
 				MACOSX_DEPLOYMENT_TARGET = 10.8;
372 372
 				PRODUCT_BUNDLE_IDENTIFIER = de.xythobuz.CaseLights;
373 373
 				PRODUCT_NAME = "$(TARGET_NAME)";
374
-				USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/SystemInfoKit/**";
374
+				USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/**";
375 375
 			};
376 376
 			name = Debug;
377 377
 		};
@@ -386,7 +386,7 @@
386 386
 				MACOSX_DEPLOYMENT_TARGET = 10.8;
387 387
 				PRODUCT_BUNDLE_IDENTIFIER = de.xythobuz.CaseLights;
388 388
 				PRODUCT_NAME = "$(TARGET_NAME)";
389
-				USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/SystemInfoKit/**";
389
+				USER_HEADER_SEARCH_PATHS = "JSystemInfoKit/**";
390 390
 			};
391 391
 			name = Release;
392 392
 		};

+ 1
- 1
CaseLights/AppDelegate.m View File

@@ -10,7 +10,7 @@
10 10
 #import "Serial.h"
11 11
 #import "GPUStats.h"
12 12
 
13
-#import <SystemInfoKit/SystemInfoKit.h>
13
+#import "SystemInfoKit/SystemInfoKit.h"
14 14
 
15 15
 #define PREF_SERIAL_PORT @"SerialPort"
16 16
 #define PREF_LIGHTS_STATE @"LightState"

+ 1
- 1
CaseLights/Info.plist View File

@@ -21,7 +21,7 @@
21 21
 	<key>CFBundleSignature</key>
22 22
 	<string>????</string>
23 23
 	<key>CFBundleVersion</key>
24
-	<string>103</string>
24
+	<string>104</string>
25 25
 	<key>LSApplicationCategoryType</key>
26 26
 	<string>public.app-category.utilities</string>
27 27
 	<key>LSMinimumSystemVersion</key>

Loading…
Cancel
Save