filedialog 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/gempush.yml +31 -0
- data/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/.rubocop.yml +19 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +30 -0
- data/LICENSE +674 -0
- data/README.md +22 -0
- data/Rakefile +35 -0
- data/bin/console +25 -0
- data/deps/filedialogbuilddeps.rb +49 -0
- data/deps/nativefiledialog/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- data/deps/nativefiledialog/.gitignore +181 -0
- data/deps/nativefiledialog/LICENSE +16 -0
- data/deps/nativefiledialog/README.md +180 -0
- data/deps/nativefiledialog/build/dont_run_premake.txt +1 -0
- data/deps/nativefiledialog/build/gmake_linux/Makefile +101 -0
- data/deps/nativefiledialog/build/gmake_linux/nfd.make +192 -0
- data/deps/nativefiledialog/build/gmake_linux/test_opendialog.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux/test_opendialogmultiple.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux/test_pickfolder.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux/test_savedialog.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/Makefile +101 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/nfd.make +192 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialog.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialogmultiple.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/test_pickfolder.make +188 -0
- data/deps/nativefiledialog/build/gmake_linux_zenity/test_savedialog.make +188 -0
- data/deps/nativefiledialog/build/gmake_macosx/Makefile +85 -0
- data/deps/nativefiledialog/build/gmake_macosx/nfd.make +154 -0
- data/deps/nativefiledialog/build/gmake_macosx/test_opendialog.make +150 -0
- data/deps/nativefiledialog/build/gmake_macosx/test_opendialogmultiple.make +150 -0
- data/deps/nativefiledialog/build/gmake_macosx/test_pickfolder.make +150 -0
- data/deps/nativefiledialog/build/gmake_macosx/test_savedialog.make +150 -0
- data/deps/nativefiledialog/build/gmake_windows/Makefile +101 -0
- data/deps/nativefiledialog/build/gmake_windows/nfd.make +192 -0
- data/deps/nativefiledialog/build/gmake_windows/test_opendialog.make +188 -0
- data/deps/nativefiledialog/build/gmake_windows/test_opendialogmultiple.make +188 -0
- data/deps/nativefiledialog/build/gmake_windows/test_pickfolder.make +188 -0
- data/deps/nativefiledialog/build/gmake_windows/test_savedialog.make +188 -0
- data/deps/nativefiledialog/build/premake5.lua +265 -0
- data/deps/nativefiledialog/build/vs2010/NativeFileDialog.sln +78 -0
- data/deps/nativefiledialog/build/vs2010/nfd.vcxproj +168 -0
- data/deps/nativefiledialog/build/vs2010/nfd.vcxproj.filters +20 -0
- data/deps/nativefiledialog/build/vs2010/test_opendialog.vcxproj +182 -0
- data/deps/nativefiledialog/build/vs2010/test_opendialogmultiple.vcxproj +182 -0
- data/deps/nativefiledialog/build/vs2010/test_pickfolder.vcxproj +182 -0
- data/deps/nativefiledialog/build/vs2010/test_savedialog.vcxproj +182 -0
- data/deps/nativefiledialog/build/xcode4/NativeFileDialog.xcworkspace/contents.xcworkspacedata +19 -0
- data/deps/nativefiledialog/build/xcode4/nfd.xcodeproj/project.pbxproj +228 -0
- data/deps/nativefiledialog/build/xcode4/test_opendialog.xcodeproj/project.pbxproj +294 -0
- data/deps/nativefiledialog/build/xcode4/test_opendialogmultiple.xcodeproj/project.pbxproj +294 -0
- data/deps/nativefiledialog/build/xcode4/test_pickfolder.xcodeproj/project.pbxproj +294 -0
- data/deps/nativefiledialog/build/xcode4/test_savedialog.xcodeproj/project.pbxproj +294 -0
- data/deps/nativefiledialog/docs/build.md +39 -0
- data/deps/nativefiledialog/docs/contributing.md +25 -0
- data/deps/nativefiledialog/screens/open_cocoa.png +0 -0
- data/deps/nativefiledialog/screens/open_gtk3.png +0 -0
- data/deps/nativefiledialog/screens/open_win.png +0 -0
- data/deps/nativefiledialog/src/common.h +21 -0
- data/deps/nativefiledialog/src/include/nfd.h +74 -0
- data/deps/nativefiledialog/src/nfd_cocoa.m +286 -0
- data/deps/nativefiledialog/src/nfd_common.c +142 -0
- data/deps/nativefiledialog/src/nfd_common.h +39 -0
- data/deps/nativefiledialog/src/nfd_gtk.c +379 -0
- data/deps/nativefiledialog/src/nfd_win.cpp +762 -0
- data/deps/nativefiledialog/src/nfd_zenity.c +307 -0
- data/deps/nativefiledialog/src/simple_exec.h +218 -0
- data/deps/nativefiledialog/test/test_opendialog.c +29 -0
- data/deps/nativefiledialog/test/test_opendialogmultiple.c +32 -0
- data/deps/nativefiledialog/test/test_pickfolder.c +29 -0
- data/deps/nativefiledialog/test/test_savedialog.c +28 -0
- data/ext/filedialog/extconf.rb +58 -0
- data/ext/filedialog/filedialog.c +118 -0
- data/filedialog.gemspec +48 -0
- data/lib/filedialog.rb +50 -0
- data/lib/filedialog/version.rb +5 -0
- metadata +137 -0
@@ -0,0 +1,294 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
62D586CEA6E958009ABADD0E /* libnfd.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 164F31368771D2283D387F76 /* libnfd.a */; };
|
11
|
+
B762408A248A4EFC261D3ECA /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 893A8412D69D7A444CBC7A52 /* AppKit.framework */; };
|
12
|
+
BDAA66E6806AC758DD9FA526 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */; };
|
13
|
+
FD8CFC1C578E130E1ED50A5C /* test_opendialogmultiple.c in Sources */ = {isa = PBXBuildFile; fileRef = 045228841F1E973622EF2EC4 /* test_opendialogmultiple.c */; };
|
14
|
+
/* End PBXBuildFile section */
|
15
|
+
|
16
|
+
/* Begin PBXContainerItemProxy section */
|
17
|
+
57D02ABA51362C2C44D188FA /* PBXContainerItemProxy */ = {
|
18
|
+
isa = PBXContainerItemProxy;
|
19
|
+
containerPortal = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
20
|
+
proxyType = 2;
|
21
|
+
remoteGlobalIDString = 4E280AA77CCE5E99D60FB8E7;
|
22
|
+
remoteInfo = libnfd.a;
|
23
|
+
};
|
24
|
+
AA0A9D53A3709EC5970BFB93 /* PBXContainerItemProxy */ = {
|
25
|
+
isa = PBXContainerItemProxy;
|
26
|
+
containerPortal = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
27
|
+
proxyType = 1;
|
28
|
+
remoteGlobalIDString = ED35A9AD9188475FA3C08FED;
|
29
|
+
remoteInfo = libnfd.a;
|
30
|
+
};
|
31
|
+
/* End PBXContainerItemProxy section */
|
32
|
+
|
33
|
+
/* Begin PBXFileReference section */
|
34
|
+
045228841F1E973622EF2EC4 /* test_opendialogmultiple.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = test_opendialogmultiple.c; path = ../../test/test_opendialogmultiple.c; sourceTree = "<group>"; };
|
35
|
+
360631F05E40EAA245DC7830 /* libnfd.a */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "nfd.xcodeproj"; path = nfd.xcodeproj; sourceTree = SOURCE_ROOT; };
|
36
|
+
4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
37
|
+
5EEA00562255C20860F96696 /* test_opendialogmultiple */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = test_opendialogmultiple; path = test_opendialogmultiple; sourceTree = BUILT_PRODUCTS_DIR; };
|
38
|
+
893A8412D69D7A444CBC7A52 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
|
39
|
+
/* End PBXFileReference section */
|
40
|
+
|
41
|
+
/* Begin PBXFrameworksBuildPhase section */
|
42
|
+
9EED3AC6C727F378AEC38106 /* Frameworks */ = {
|
43
|
+
isa = PBXFrameworksBuildPhase;
|
44
|
+
buildActionMask = 2147483647;
|
45
|
+
files = (
|
46
|
+
BDAA66E6806AC758DD9FA526 /* Foundation.framework in Frameworks */,
|
47
|
+
B762408A248A4EFC261D3ECA /* AppKit.framework in Frameworks */,
|
48
|
+
62D586CEA6E958009ABADD0E /* libnfd.a in Frameworks */,
|
49
|
+
);
|
50
|
+
runOnlyForDeploymentPostprocessing = 0;
|
51
|
+
};
|
52
|
+
/* End PBXFrameworksBuildPhase section */
|
53
|
+
|
54
|
+
/* Begin PBXGroup section */
|
55
|
+
3323A4ED33D6A1DFA7B8732D /* test_opendialogmultiple */ = {
|
56
|
+
isa = PBXGroup;
|
57
|
+
children = (
|
58
|
+
045228841F1E973622EF2EC4 /* test_opendialogmultiple.c */,
|
59
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */,
|
60
|
+
A6C936B49B3FADE6EA134CF4 /* Products */,
|
61
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */,
|
62
|
+
);
|
63
|
+
name = test_opendialogmultiple;
|
64
|
+
sourceTree = "<group>";
|
65
|
+
};
|
66
|
+
5D4848BA745AE3EC6476DEFA /* Products */ = {
|
67
|
+
isa = PBXGroup;
|
68
|
+
children = (
|
69
|
+
164F31368771D2283D387F76 /* libnfd.a */,
|
70
|
+
);
|
71
|
+
name = Products;
|
72
|
+
sourceTree = "<group>";
|
73
|
+
};
|
74
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */ = {
|
75
|
+
isa = PBXGroup;
|
76
|
+
children = (
|
77
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
78
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
79
|
+
);
|
80
|
+
name = Projects;
|
81
|
+
sourceTree = "<group>";
|
82
|
+
};
|
83
|
+
A6C936B49B3FADE6EA134CF4 /* Products */ = {
|
84
|
+
isa = PBXGroup;
|
85
|
+
children = (
|
86
|
+
5EEA00562255C20860F96696 /* test_opendialogmultiple */,
|
87
|
+
);
|
88
|
+
name = Products;
|
89
|
+
sourceTree = "<group>";
|
90
|
+
};
|
91
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */ = {
|
92
|
+
isa = PBXGroup;
|
93
|
+
children = (
|
94
|
+
4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */,
|
95
|
+
893A8412D69D7A444CBC7A52 /* AppKit.framework */,
|
96
|
+
);
|
97
|
+
name = Frameworks;
|
98
|
+
sourceTree = "<group>";
|
99
|
+
};
|
100
|
+
/* End PBXGroup section */
|
101
|
+
|
102
|
+
/* Begin PBXNativeTarget section */
|
103
|
+
AFA8257C0AE978EEDE43C3BC /* test_opendialogmultiple */ = {
|
104
|
+
isa = PBXNativeTarget;
|
105
|
+
buildConfigurationList = 8D288325B5633BD79CFEC965 /* Build configuration list for PBXNativeTarget "test_opendialogmultiple" */;
|
106
|
+
buildPhases = (
|
107
|
+
0ED4BB66370F74181EAB01A6 /* Resources */,
|
108
|
+
7881D4BDA0BC8D6F88581AFD /* Sources */,
|
109
|
+
9EED3AC6C727F378AEC38106 /* Frameworks */,
|
110
|
+
);
|
111
|
+
buildRules = (
|
112
|
+
);
|
113
|
+
dependencies = (
|
114
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
115
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
116
|
+
);
|
117
|
+
name = test_opendialogmultiple;
|
118
|
+
productInstallPath = "$(HOME)/bin";
|
119
|
+
productName = test_opendialogmultiple;
|
120
|
+
productReference = 5EEA00562255C20860F96696 /* test_opendialogmultiple */;
|
121
|
+
productType = "com.apple.product-type.tool";
|
122
|
+
};
|
123
|
+
/* End PBXNativeTarget section */
|
124
|
+
|
125
|
+
/* Begin PBXProject section */
|
126
|
+
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
127
|
+
isa = PBXProject;
|
128
|
+
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "test_opendialogmultiple" */;
|
129
|
+
compatibilityVersion = "Xcode 3.2";
|
130
|
+
hasScannedForEncodings = 1;
|
131
|
+
mainGroup = 3323A4ED33D6A1DFA7B8732D /* test_opendialogmultiple */;
|
132
|
+
projectDirPath = "";
|
133
|
+
projectReferences = (
|
134
|
+
{
|
135
|
+
ProductGroup = 5D4848BA745AE3EC6476DEFA /* Products */;
|
136
|
+
ProjectRef = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
137
|
+
},
|
138
|
+
{
|
139
|
+
ProductGroup = 5D4848BA745AE3EC6476DEFA /* Products */;
|
140
|
+
ProjectRef = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
141
|
+
},
|
142
|
+
);
|
143
|
+
projectRoot = "";
|
144
|
+
targets = (
|
145
|
+
AFA8257C0AE978EEDE43C3BC /* test_opendialogmultiple */,
|
146
|
+
);
|
147
|
+
};
|
148
|
+
/* End PBXProject section */
|
149
|
+
|
150
|
+
/* Begin PBXReferenceProxy section */
|
151
|
+
164F31368771D2283D387F76 /* libnfd.a */ = {
|
152
|
+
isa = PBXReferenceProxy;
|
153
|
+
fileType = archive.ar;
|
154
|
+
path = libnfd.a;
|
155
|
+
remoteRef = 57D02ABA51362C2C44D188FA /* PBXContainerItemProxy */;
|
156
|
+
sourceTree = BUILT_PRODUCTS_DIR;
|
157
|
+
};
|
158
|
+
/* End PBXReferenceProxy section */
|
159
|
+
|
160
|
+
/* Begin PBXResourcesBuildPhase section */
|
161
|
+
0ED4BB66370F74181EAB01A6 /* Resources */ = {
|
162
|
+
isa = PBXResourcesBuildPhase;
|
163
|
+
buildActionMask = 2147483647;
|
164
|
+
files = (
|
165
|
+
);
|
166
|
+
runOnlyForDeploymentPostprocessing = 0;
|
167
|
+
};
|
168
|
+
/* End PBXResourcesBuildPhase section */
|
169
|
+
|
170
|
+
/* Begin PBXSourcesBuildPhase section */
|
171
|
+
7881D4BDA0BC8D6F88581AFD /* Sources */ = {
|
172
|
+
isa = PBXSourcesBuildPhase;
|
173
|
+
buildActionMask = 2147483647;
|
174
|
+
files = (
|
175
|
+
FD8CFC1C578E130E1ED50A5C /* test_opendialogmultiple.c in Sources */,
|
176
|
+
);
|
177
|
+
runOnlyForDeploymentPostprocessing = 0;
|
178
|
+
};
|
179
|
+
/* End PBXSourcesBuildPhase section */
|
180
|
+
|
181
|
+
/* Begin PBXTargetDependency section */
|
182
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */ = {
|
183
|
+
isa = PBXTargetDependency;
|
184
|
+
name = libnfd.a;
|
185
|
+
targetProxy = AA0A9D53A3709EC5970BFB93 /* PBXContainerItemProxy */;
|
186
|
+
};
|
187
|
+
/* End PBXTargetDependency section */
|
188
|
+
|
189
|
+
/* Begin PBXVariantGroup section */
|
190
|
+
/* End PBXVariantGroup section */
|
191
|
+
|
192
|
+
/* Begin XCBuildConfiguration section */
|
193
|
+
298419250DCB215791B84F65 /* Release */ = {
|
194
|
+
isa = XCBuildConfiguration;
|
195
|
+
buildSettings = {
|
196
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
197
|
+
CONFIGURATION_BUILD_DIR = ../bin;
|
198
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
199
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
200
|
+
INSTALL_PATH = /usr/local/bin;
|
201
|
+
PRODUCT_NAME = test_opendialogmultiple;
|
202
|
+
};
|
203
|
+
name = Release;
|
204
|
+
};
|
205
|
+
39064156FC7203083B15A796 /* Release */ = {
|
206
|
+
isa = XCBuildConfiguration;
|
207
|
+
buildSettings = {
|
208
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
209
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
210
|
+
GCC_OPTIMIZATION_LEVEL = 3;
|
211
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
212
|
+
NDEBUG,
|
213
|
+
);
|
214
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
215
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
216
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
217
|
+
LIBRARY_SEARCH_PATHS = (
|
218
|
+
../lib/Release/x64,
|
219
|
+
);
|
220
|
+
OBJROOT = obj/x64/Release/test_opendialogmultiple;
|
221
|
+
ONLY_ACTIVE_ARCH = NO;
|
222
|
+
SYMROOT = ../bin;
|
223
|
+
USER_HEADER_SEARCH_PATHS = (
|
224
|
+
../../src/include,
|
225
|
+
);
|
226
|
+
};
|
227
|
+
name = Release;
|
228
|
+
};
|
229
|
+
A461F01CC62D9D4E02E2C65C /* Debug */ = {
|
230
|
+
isa = XCBuildConfiguration;
|
231
|
+
buildSettings = {
|
232
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
233
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
234
|
+
COPY_PHASE_STRIP = NO;
|
235
|
+
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
236
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
237
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
238
|
+
DEBUG,
|
239
|
+
);
|
240
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
241
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
242
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
243
|
+
LIBRARY_SEARCH_PATHS = (
|
244
|
+
../lib/Debug/x64,
|
245
|
+
);
|
246
|
+
OBJROOT = obj/x64/Debug/test_opendialogmultiple;
|
247
|
+
ONLY_ACTIVE_ARCH = YES;
|
248
|
+
OTHER_LDFLAGS = (
|
249
|
+
"-lnfd_d",
|
250
|
+
);
|
251
|
+
SYMROOT = ../bin;
|
252
|
+
USER_HEADER_SEARCH_PATHS = (
|
253
|
+
../../src/include,
|
254
|
+
);
|
255
|
+
};
|
256
|
+
name = Debug;
|
257
|
+
};
|
258
|
+
EB85776BB9A8CB1D40B71DAB /* Debug */ = {
|
259
|
+
isa = XCBuildConfiguration;
|
260
|
+
buildSettings = {
|
261
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
262
|
+
CONFIGURATION_BUILD_DIR = ../bin;
|
263
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
264
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
265
|
+
INSTALL_PATH = /usr/local/bin;
|
266
|
+
PRODUCT_NAME = test_opendialogmultiple_d;
|
267
|
+
};
|
268
|
+
name = Debug;
|
269
|
+
};
|
270
|
+
/* End XCBuildConfiguration section */
|
271
|
+
|
272
|
+
/* Begin XCConfigurationList section */
|
273
|
+
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "test_opendialogmultiple" */ = {
|
274
|
+
isa = XCConfigurationList;
|
275
|
+
buildConfigurations = (
|
276
|
+
39064156FC7203083B15A796 /* Release */,
|
277
|
+
A461F01CC62D9D4E02E2C65C /* Debug */,
|
278
|
+
);
|
279
|
+
defaultConfigurationIsVisible = 0;
|
280
|
+
defaultConfigurationName = Release;
|
281
|
+
};
|
282
|
+
8D288325B5633BD79CFEC965 /* Build configuration list for PBXNativeTarget "test_opendialogmultiple" */ = {
|
283
|
+
isa = XCConfigurationList;
|
284
|
+
buildConfigurations = (
|
285
|
+
298419250DCB215791B84F65 /* Release */,
|
286
|
+
EB85776BB9A8CB1D40B71DAB /* Debug */,
|
287
|
+
);
|
288
|
+
defaultConfigurationIsVisible = 0;
|
289
|
+
defaultConfigurationName = Release;
|
290
|
+
};
|
291
|
+
/* End XCConfigurationList section */
|
292
|
+
};
|
293
|
+
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
294
|
+
}
|
@@ -0,0 +1,294 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
2DE64B06854BBDF83759D946 /* test_pickfolder.c in Sources */ = {isa = PBXBuildFile; fileRef = A6C583CED8BECE80529E0A0E /* test_pickfolder.c */; };
|
11
|
+
62D586CEA6E958009ABADD0E /* libnfd.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 164F31368771D2283D387F76 /* libnfd.a */; };
|
12
|
+
B762408A248A4EFC261D3ECA /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 893A8412D69D7A444CBC7A52 /* AppKit.framework */; };
|
13
|
+
BDAA66E6806AC758DD9FA526 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */; };
|
14
|
+
/* End PBXBuildFile section */
|
15
|
+
|
16
|
+
/* Begin PBXContainerItemProxy section */
|
17
|
+
57D02ABA51362C2C44D188FA /* PBXContainerItemProxy */ = {
|
18
|
+
isa = PBXContainerItemProxy;
|
19
|
+
containerPortal = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
20
|
+
proxyType = 2;
|
21
|
+
remoteGlobalIDString = 4E280AA77CCE5E99D60FB8E7;
|
22
|
+
remoteInfo = libnfd.a;
|
23
|
+
};
|
24
|
+
AA0A9D53A3709EC5970BFB93 /* PBXContainerItemProxy */ = {
|
25
|
+
isa = PBXContainerItemProxy;
|
26
|
+
containerPortal = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
27
|
+
proxyType = 1;
|
28
|
+
remoteGlobalIDString = ED35A9AD9188475FA3C08FED;
|
29
|
+
remoteInfo = libnfd.a;
|
30
|
+
};
|
31
|
+
/* End PBXContainerItemProxy section */
|
32
|
+
|
33
|
+
/* Begin PBXFileReference section */
|
34
|
+
360631F05E40EAA245DC7830 /* libnfd.a */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "nfd.xcodeproj"; path = nfd.xcodeproj; sourceTree = SOURCE_ROOT; };
|
35
|
+
4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
36
|
+
893A8412D69D7A444CBC7A52 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
|
37
|
+
A6C583CED8BECE80529E0A0E /* test_pickfolder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = test_pickfolder.c; path = ../../test/test_pickfolder.c; sourceTree = "<group>"; };
|
38
|
+
D96C690BFF9298BD66998F4B /* test_pickfolder */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = test_pickfolder; path = test_pickfolder; sourceTree = BUILT_PRODUCTS_DIR; };
|
39
|
+
/* End PBXFileReference section */
|
40
|
+
|
41
|
+
/* Begin PBXFrameworksBuildPhase section */
|
42
|
+
FD7590FBA063B7AD2F89973B /* Frameworks */ = {
|
43
|
+
isa = PBXFrameworksBuildPhase;
|
44
|
+
buildActionMask = 2147483647;
|
45
|
+
files = (
|
46
|
+
BDAA66E6806AC758DD9FA526 /* Foundation.framework in Frameworks */,
|
47
|
+
B762408A248A4EFC261D3ECA /* AppKit.framework in Frameworks */,
|
48
|
+
62D586CEA6E958009ABADD0E /* libnfd.a in Frameworks */,
|
49
|
+
);
|
50
|
+
runOnlyForDeploymentPostprocessing = 0;
|
51
|
+
};
|
52
|
+
/* End PBXFrameworksBuildPhase section */
|
53
|
+
|
54
|
+
/* Begin PBXGroup section */
|
55
|
+
5D4848BA745AE3EC6476DEFA /* Products */ = {
|
56
|
+
isa = PBXGroup;
|
57
|
+
children = (
|
58
|
+
164F31368771D2283D387F76 /* libnfd.a */,
|
59
|
+
);
|
60
|
+
name = Products;
|
61
|
+
sourceTree = "<group>";
|
62
|
+
};
|
63
|
+
8705BCC2D98BE7B4ABD04B02 /* test_pickfolder */ = {
|
64
|
+
isa = PBXGroup;
|
65
|
+
children = (
|
66
|
+
A6C583CED8BECE80529E0A0E /* test_pickfolder.c */,
|
67
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */,
|
68
|
+
A6C936B49B3FADE6EA134CF4 /* Products */,
|
69
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */,
|
70
|
+
);
|
71
|
+
name = test_pickfolder;
|
72
|
+
sourceTree = "<group>";
|
73
|
+
};
|
74
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */ = {
|
75
|
+
isa = PBXGroup;
|
76
|
+
children = (
|
77
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
78
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
79
|
+
);
|
80
|
+
name = Projects;
|
81
|
+
sourceTree = "<group>";
|
82
|
+
};
|
83
|
+
A6C936B49B3FADE6EA134CF4 /* Products */ = {
|
84
|
+
isa = PBXGroup;
|
85
|
+
children = (
|
86
|
+
D96C690BFF9298BD66998F4B /* test_pickfolder */,
|
87
|
+
);
|
88
|
+
name = Products;
|
89
|
+
sourceTree = "<group>";
|
90
|
+
};
|
91
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */ = {
|
92
|
+
isa = PBXGroup;
|
93
|
+
children = (
|
94
|
+
4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */,
|
95
|
+
893A8412D69D7A444CBC7A52 /* AppKit.framework */,
|
96
|
+
);
|
97
|
+
name = Frameworks;
|
98
|
+
sourceTree = "<group>";
|
99
|
+
};
|
100
|
+
/* End PBXGroup section */
|
101
|
+
|
102
|
+
/* Begin PBXNativeTarget section */
|
103
|
+
1075CB9109DBCD03FD7729D1 /* test_pickfolder */ = {
|
104
|
+
isa = PBXNativeTarget;
|
105
|
+
buildConfigurationList = EBB0D95A8E9F000C1DC4DF9A /* Build configuration list for PBXNativeTarget "test_pickfolder" */;
|
106
|
+
buildPhases = (
|
107
|
+
6D5D119B104B384D9F7117DB /* Resources */,
|
108
|
+
D70A2AF279F851A4091E3132 /* Sources */,
|
109
|
+
FD7590FBA063B7AD2F89973B /* Frameworks */,
|
110
|
+
);
|
111
|
+
buildRules = (
|
112
|
+
);
|
113
|
+
dependencies = (
|
114
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
115
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
116
|
+
);
|
117
|
+
name = test_pickfolder;
|
118
|
+
productInstallPath = "$(HOME)/bin";
|
119
|
+
productName = test_pickfolder;
|
120
|
+
productReference = D96C690BFF9298BD66998F4B /* test_pickfolder */;
|
121
|
+
productType = "com.apple.product-type.tool";
|
122
|
+
};
|
123
|
+
/* End PBXNativeTarget section */
|
124
|
+
|
125
|
+
/* Begin PBXProject section */
|
126
|
+
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
127
|
+
isa = PBXProject;
|
128
|
+
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "test_pickfolder" */;
|
129
|
+
compatibilityVersion = "Xcode 3.2";
|
130
|
+
hasScannedForEncodings = 1;
|
131
|
+
mainGroup = 8705BCC2D98BE7B4ABD04B02 /* test_pickfolder */;
|
132
|
+
projectDirPath = "";
|
133
|
+
projectReferences = (
|
134
|
+
{
|
135
|
+
ProductGroup = 5D4848BA745AE3EC6476DEFA /* Products */;
|
136
|
+
ProjectRef = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
137
|
+
},
|
138
|
+
{
|
139
|
+
ProductGroup = 5D4848BA745AE3EC6476DEFA /* Products */;
|
140
|
+
ProjectRef = 360631F05E40EAA245DC7830 /* nfd.xcodeproj */;
|
141
|
+
},
|
142
|
+
);
|
143
|
+
projectRoot = "";
|
144
|
+
targets = (
|
145
|
+
1075CB9109DBCD03FD7729D1 /* test_pickfolder */,
|
146
|
+
);
|
147
|
+
};
|
148
|
+
/* End PBXProject section */
|
149
|
+
|
150
|
+
/* Begin PBXReferenceProxy section */
|
151
|
+
164F31368771D2283D387F76 /* libnfd.a */ = {
|
152
|
+
isa = PBXReferenceProxy;
|
153
|
+
fileType = archive.ar;
|
154
|
+
path = libnfd.a;
|
155
|
+
remoteRef = 57D02ABA51362C2C44D188FA /* PBXContainerItemProxy */;
|
156
|
+
sourceTree = BUILT_PRODUCTS_DIR;
|
157
|
+
};
|
158
|
+
/* End PBXReferenceProxy section */
|
159
|
+
|
160
|
+
/* Begin PBXResourcesBuildPhase section */
|
161
|
+
6D5D119B104B384D9F7117DB /* Resources */ = {
|
162
|
+
isa = PBXResourcesBuildPhase;
|
163
|
+
buildActionMask = 2147483647;
|
164
|
+
files = (
|
165
|
+
);
|
166
|
+
runOnlyForDeploymentPostprocessing = 0;
|
167
|
+
};
|
168
|
+
/* End PBXResourcesBuildPhase section */
|
169
|
+
|
170
|
+
/* Begin PBXSourcesBuildPhase section */
|
171
|
+
D70A2AF279F851A4091E3132 /* Sources */ = {
|
172
|
+
isa = PBXSourcesBuildPhase;
|
173
|
+
buildActionMask = 2147483647;
|
174
|
+
files = (
|
175
|
+
2DE64B06854BBDF83759D946 /* test_pickfolder.c in Sources */,
|
176
|
+
);
|
177
|
+
runOnlyForDeploymentPostprocessing = 0;
|
178
|
+
};
|
179
|
+
/* End PBXSourcesBuildPhase section */
|
180
|
+
|
181
|
+
/* Begin PBXTargetDependency section */
|
182
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */ = {
|
183
|
+
isa = PBXTargetDependency;
|
184
|
+
name = libnfd.a;
|
185
|
+
targetProxy = AA0A9D53A3709EC5970BFB93 /* PBXContainerItemProxy */;
|
186
|
+
};
|
187
|
+
/* End PBXTargetDependency section */
|
188
|
+
|
189
|
+
/* Begin PBXVariantGroup section */
|
190
|
+
/* End PBXVariantGroup section */
|
191
|
+
|
192
|
+
/* Begin XCBuildConfiguration section */
|
193
|
+
22B4A81A70179E4CE6369E5A /* Release */ = {
|
194
|
+
isa = XCBuildConfiguration;
|
195
|
+
buildSettings = {
|
196
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
197
|
+
CONFIGURATION_BUILD_DIR = ../bin;
|
198
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
199
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
200
|
+
INSTALL_PATH = /usr/local/bin;
|
201
|
+
PRODUCT_NAME = test_pickfolder;
|
202
|
+
};
|
203
|
+
name = Release;
|
204
|
+
};
|
205
|
+
B1EBC520755786D2B3FB2B60 /* Debug */ = {
|
206
|
+
isa = XCBuildConfiguration;
|
207
|
+
buildSettings = {
|
208
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
209
|
+
CONFIGURATION_BUILD_DIR = ../bin;
|
210
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
211
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
212
|
+
INSTALL_PATH = /usr/local/bin;
|
213
|
+
PRODUCT_NAME = test_pickfolder_d;
|
214
|
+
};
|
215
|
+
name = Debug;
|
216
|
+
};
|
217
|
+
B388AA0BD9AED9BD40B5D04B /* Release */ = {
|
218
|
+
isa = XCBuildConfiguration;
|
219
|
+
buildSettings = {
|
220
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
221
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
222
|
+
GCC_OPTIMIZATION_LEVEL = 3;
|
223
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
224
|
+
NDEBUG,
|
225
|
+
);
|
226
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
227
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
228
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
229
|
+
LIBRARY_SEARCH_PATHS = (
|
230
|
+
../lib/Release/x64,
|
231
|
+
);
|
232
|
+
OBJROOT = obj/x64/Release/test_pickfolder;
|
233
|
+
ONLY_ACTIVE_ARCH = NO;
|
234
|
+
SYMROOT = ../bin;
|
235
|
+
USER_HEADER_SEARCH_PATHS = (
|
236
|
+
../../src/include,
|
237
|
+
);
|
238
|
+
};
|
239
|
+
name = Release;
|
240
|
+
};
|
241
|
+
C658A791DD6B42C3CD873DD1 /* Debug */ = {
|
242
|
+
isa = XCBuildConfiguration;
|
243
|
+
buildSettings = {
|
244
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
245
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
246
|
+
COPY_PHASE_STRIP = NO;
|
247
|
+
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
248
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
249
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
250
|
+
DEBUG,
|
251
|
+
);
|
252
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
253
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
254
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
255
|
+
LIBRARY_SEARCH_PATHS = (
|
256
|
+
../lib/Debug/x64,
|
257
|
+
);
|
258
|
+
OBJROOT = obj/x64/Debug/test_pickfolder;
|
259
|
+
ONLY_ACTIVE_ARCH = YES;
|
260
|
+
OTHER_LDFLAGS = (
|
261
|
+
"-lnfd_d",
|
262
|
+
);
|
263
|
+
SYMROOT = ../bin;
|
264
|
+
USER_HEADER_SEARCH_PATHS = (
|
265
|
+
../../src/include,
|
266
|
+
);
|
267
|
+
};
|
268
|
+
name = Debug;
|
269
|
+
};
|
270
|
+
/* End XCBuildConfiguration section */
|
271
|
+
|
272
|
+
/* Begin XCConfigurationList section */
|
273
|
+
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "test_pickfolder" */ = {
|
274
|
+
isa = XCConfigurationList;
|
275
|
+
buildConfigurations = (
|
276
|
+
B388AA0BD9AED9BD40B5D04B /* Release */,
|
277
|
+
C658A791DD6B42C3CD873DD1 /* Debug */,
|
278
|
+
);
|
279
|
+
defaultConfigurationIsVisible = 0;
|
280
|
+
defaultConfigurationName = Release;
|
281
|
+
};
|
282
|
+
EBB0D95A8E9F000C1DC4DF9A /* Build configuration list for PBXNativeTarget "test_pickfolder" */ = {
|
283
|
+
isa = XCConfigurationList;
|
284
|
+
buildConfigurations = (
|
285
|
+
22B4A81A70179E4CE6369E5A /* Release */,
|
286
|
+
B1EBC520755786D2B3FB2B60 /* Debug */,
|
287
|
+
);
|
288
|
+
defaultConfigurationIsVisible = 0;
|
289
|
+
defaultConfigurationName = Release;
|
290
|
+
};
|
291
|
+
/* End XCConfigurationList section */
|
292
|
+
};
|
293
|
+
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
294
|
+
}
|