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,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Workspace
|
3
|
+
version = "1.0">
|
4
|
+
<FileRef
|
5
|
+
location = "group:nfd.xcodeproj">
|
6
|
+
</FileRef>
|
7
|
+
<FileRef
|
8
|
+
location = "group:test_opendialog.xcodeproj">
|
9
|
+
</FileRef>
|
10
|
+
<FileRef
|
11
|
+
location = "group:test_opendialogmultiple.xcodeproj">
|
12
|
+
</FileRef>
|
13
|
+
<FileRef
|
14
|
+
location = "group:test_pickfolder.xcodeproj">
|
15
|
+
</FileRef>
|
16
|
+
<FileRef
|
17
|
+
location = "group:test_savedialog.xcodeproj">
|
18
|
+
</FileRef>
|
19
|
+
</Workspace>
|
@@ -0,0 +1,228 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
0815210E38F919004C114F4E /* nfd_cocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 906CCB56B692FB081D99F196 /* nfd_cocoa.m */; };
|
11
|
+
F946FD22F308B9942D07BB62 /* nfd_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A7B972AA2EC7B5CE78B4D6A /* nfd_common.c */; };
|
12
|
+
/* End PBXBuildFile section */
|
13
|
+
|
14
|
+
/* Begin PBXFileReference section */
|
15
|
+
42F539D06B2FF28252CB8010 /* simple_exec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = simple_exec.h; path = ../../src/simple_exec.h; sourceTree = "<group>"; };
|
16
|
+
4E280AA77CCE5E99D60FB8E7 /* libnfd.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnfd.a; path = libnfd.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
17
|
+
5A7B972AA2EC7B5CE78B4D6A /* nfd_common.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = nfd_common.c; path = ../../src/nfd_common.c; sourceTree = "<group>"; };
|
18
|
+
5E955E0662063038E372D446 /* common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = common.h; path = ../../src/common.h; sourceTree = "<group>"; };
|
19
|
+
6832C6170B20ECC99A46CC57 /* nfd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = nfd.h; path = ../../src/include/nfd.h; sourceTree = "<group>"; };
|
20
|
+
906CCB56B692FB081D99F196 /* nfd_cocoa.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = nfd_cocoa.m; path = ../../src/nfd_cocoa.m; sourceTree = "<group>"; };
|
21
|
+
F016F6343887DA667D26AC74 /* nfd_common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = nfd_common.h; path = ../../src/nfd_common.h; sourceTree = "<group>"; };
|
22
|
+
/* End PBXFileReference section */
|
23
|
+
|
24
|
+
/* Begin PBXFrameworksBuildPhase section */
|
25
|
+
5AC8C497AD4EEF897F9352D7 /* Frameworks */ = {
|
26
|
+
isa = PBXFrameworksBuildPhase;
|
27
|
+
buildActionMask = 2147483647;
|
28
|
+
files = (
|
29
|
+
);
|
30
|
+
runOnlyForDeploymentPostprocessing = 0;
|
31
|
+
};
|
32
|
+
/* End PBXFrameworksBuildPhase section */
|
33
|
+
|
34
|
+
/* Begin PBXGroup section */
|
35
|
+
50F305D85C23B5CAB5C63418 /* nfd */ = {
|
36
|
+
isa = PBXGroup;
|
37
|
+
children = (
|
38
|
+
5E955E0662063038E372D446 /* common.h */,
|
39
|
+
5E8C725002DF100215175890 /* include */,
|
40
|
+
906CCB56B692FB081D99F196 /* nfd_cocoa.m */,
|
41
|
+
5A7B972AA2EC7B5CE78B4D6A /* nfd_common.c */,
|
42
|
+
F016F6343887DA667D26AC74 /* nfd_common.h */,
|
43
|
+
42F539D06B2FF28252CB8010 /* simple_exec.h */,
|
44
|
+
A6C936B49B3FADE6EA134CF4 /* Products */,
|
45
|
+
);
|
46
|
+
name = nfd;
|
47
|
+
sourceTree = "<group>";
|
48
|
+
};
|
49
|
+
5E8C725002DF100215175890 /* include */ = {
|
50
|
+
isa = PBXGroup;
|
51
|
+
children = (
|
52
|
+
6832C6170B20ECC99A46CC57 /* nfd.h */,
|
53
|
+
);
|
54
|
+
name = include;
|
55
|
+
sourceTree = "<group>";
|
56
|
+
};
|
57
|
+
A6C936B49B3FADE6EA134CF4 /* Products */ = {
|
58
|
+
isa = PBXGroup;
|
59
|
+
children = (
|
60
|
+
4E280AA77CCE5E99D60FB8E7 /* libnfd.a */,
|
61
|
+
);
|
62
|
+
name = Products;
|
63
|
+
sourceTree = "<group>";
|
64
|
+
};
|
65
|
+
/* End PBXGroup section */
|
66
|
+
|
67
|
+
/* Begin PBXNativeTarget section */
|
68
|
+
ED35A9AD9188475FA3C08FED /* nfd */ = {
|
69
|
+
isa = PBXNativeTarget;
|
70
|
+
buildConfigurationList = 49040CF69B8A37E86DCE9B36 /* Build configuration list for PBXNativeTarget "nfd" */;
|
71
|
+
buildPhases = (
|
72
|
+
CAB045371D367029EF7AD377 /* Resources */,
|
73
|
+
345D5E8E86E389805927ECCE /* Sources */,
|
74
|
+
5AC8C497AD4EEF897F9352D7 /* Frameworks */,
|
75
|
+
);
|
76
|
+
buildRules = (
|
77
|
+
);
|
78
|
+
dependencies = (
|
79
|
+
);
|
80
|
+
name = nfd;
|
81
|
+
productName = nfd;
|
82
|
+
productReference = 4E280AA77CCE5E99D60FB8E7 /* libnfd.a */;
|
83
|
+
productType = "com.apple.product-type.library.static";
|
84
|
+
};
|
85
|
+
/* End PBXNativeTarget section */
|
86
|
+
|
87
|
+
/* Begin PBXProject section */
|
88
|
+
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
89
|
+
isa = PBXProject;
|
90
|
+
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "nfd" */;
|
91
|
+
compatibilityVersion = "Xcode 3.2";
|
92
|
+
hasScannedForEncodings = 1;
|
93
|
+
mainGroup = 50F305D85C23B5CAB5C63418 /* nfd */;
|
94
|
+
projectDirPath = "";
|
95
|
+
projectRoot = "";
|
96
|
+
targets = (
|
97
|
+
ED35A9AD9188475FA3C08FED /* libnfd.a */,
|
98
|
+
);
|
99
|
+
};
|
100
|
+
/* End PBXProject section */
|
101
|
+
|
102
|
+
/* Begin PBXResourcesBuildPhase section */
|
103
|
+
CAB045371D367029EF7AD377 /* Resources */ = {
|
104
|
+
isa = PBXResourcesBuildPhase;
|
105
|
+
buildActionMask = 2147483647;
|
106
|
+
files = (
|
107
|
+
);
|
108
|
+
runOnlyForDeploymentPostprocessing = 0;
|
109
|
+
};
|
110
|
+
/* End PBXResourcesBuildPhase section */
|
111
|
+
|
112
|
+
/* Begin PBXSourcesBuildPhase section */
|
113
|
+
345D5E8E86E389805927ECCE /* Sources */ = {
|
114
|
+
isa = PBXSourcesBuildPhase;
|
115
|
+
buildActionMask = 2147483647;
|
116
|
+
files = (
|
117
|
+
0815210E38F919004C114F4E /* nfd_cocoa.m in Sources */,
|
118
|
+
F946FD22F308B9942D07BB62 /* nfd_common.c in Sources */,
|
119
|
+
);
|
120
|
+
runOnlyForDeploymentPostprocessing = 0;
|
121
|
+
};
|
122
|
+
/* End PBXSourcesBuildPhase section */
|
123
|
+
|
124
|
+
/* Begin PBXVariantGroup section */
|
125
|
+
/* End PBXVariantGroup section */
|
126
|
+
|
127
|
+
/* Begin XCBuildConfiguration section */
|
128
|
+
6730896713934999D21BBFA7 /* Debug */ = {
|
129
|
+
isa = XCBuildConfiguration;
|
130
|
+
buildSettings = {
|
131
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
132
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
133
|
+
COPY_PHASE_STRIP = NO;
|
134
|
+
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
135
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
136
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
137
|
+
DEBUG,
|
138
|
+
);
|
139
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
140
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
141
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
142
|
+
OBJROOT = obj/x64/Debug/nfd;
|
143
|
+
ONLY_ACTIVE_ARCH = YES;
|
144
|
+
OTHER_CFLAGS = (
|
145
|
+
"-fno-exceptions",
|
146
|
+
);
|
147
|
+
SYMROOT = ../lib/Debug/x64;
|
148
|
+
USER_HEADER_SEARCH_PATHS = (
|
149
|
+
../../src/include,
|
150
|
+
);
|
151
|
+
WARNING_CFLAGS = "-Wall -Wextra";
|
152
|
+
};
|
153
|
+
name = Debug;
|
154
|
+
};
|
155
|
+
8FABFCB6E6396728BEB27AF6 /* Release */ = {
|
156
|
+
isa = XCBuildConfiguration;
|
157
|
+
buildSettings = {
|
158
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
159
|
+
CONFIGURATION_BUILD_DIR = ../lib/Release/x64;
|
160
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
161
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
162
|
+
INSTALL_PATH = /usr/local/lib;
|
163
|
+
PRODUCT_NAME = nfd;
|
164
|
+
};
|
165
|
+
name = Release;
|
166
|
+
};
|
167
|
+
E9E0596139F3EE13BC721FA1 /* Release */ = {
|
168
|
+
isa = XCBuildConfiguration;
|
169
|
+
buildSettings = {
|
170
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
171
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
172
|
+
GCC_OPTIMIZATION_LEVEL = 3;
|
173
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
174
|
+
NDEBUG,
|
175
|
+
);
|
176
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
177
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
178
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
179
|
+
OBJROOT = obj/x64/Release/nfd;
|
180
|
+
ONLY_ACTIVE_ARCH = NO;
|
181
|
+
OTHER_CFLAGS = (
|
182
|
+
"-fno-exceptions",
|
183
|
+
);
|
184
|
+
SYMROOT = ../lib/Release/x64;
|
185
|
+
USER_HEADER_SEARCH_PATHS = (
|
186
|
+
../../src/include,
|
187
|
+
);
|
188
|
+
WARNING_CFLAGS = "-Wall -Wextra";
|
189
|
+
};
|
190
|
+
name = Release;
|
191
|
+
};
|
192
|
+
F08D42BCDB7968AE235F30FC /* Debug */ = {
|
193
|
+
isa = XCBuildConfiguration;
|
194
|
+
buildSettings = {
|
195
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
196
|
+
CONFIGURATION_BUILD_DIR = ../lib/Debug/x64;
|
197
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
198
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
199
|
+
INSTALL_PATH = /usr/local/lib;
|
200
|
+
PRODUCT_NAME = nfd_d;
|
201
|
+
};
|
202
|
+
name = Debug;
|
203
|
+
};
|
204
|
+
/* End XCBuildConfiguration section */
|
205
|
+
|
206
|
+
/* Begin XCConfigurationList section */
|
207
|
+
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "nfd" */ = {
|
208
|
+
isa = XCConfigurationList;
|
209
|
+
buildConfigurations = (
|
210
|
+
E9E0596139F3EE13BC721FA1 /* Release */,
|
211
|
+
6730896713934999D21BBFA7 /* Debug */,
|
212
|
+
);
|
213
|
+
defaultConfigurationIsVisible = 0;
|
214
|
+
defaultConfigurationName = Release;
|
215
|
+
};
|
216
|
+
49040CF69B8A37E86DCE9B36 /* Build configuration list for PBXNativeTarget "libnfd.a" */ = {
|
217
|
+
isa = XCConfigurationList;
|
218
|
+
buildConfigurations = (
|
219
|
+
8FABFCB6E6396728BEB27AF6 /* Release */,
|
220
|
+
F08D42BCDB7968AE235F30FC /* Debug */,
|
221
|
+
);
|
222
|
+
defaultConfigurationIsVisible = 0;
|
223
|
+
defaultConfigurationName = Release;
|
224
|
+
};
|
225
|
+
/* End XCConfigurationList section */
|
226
|
+
};
|
227
|
+
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
228
|
+
}
|
@@ -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
|
+
DA9A5B4431FFCE36E40DE984 /* test_opendialog.c in Sources */ = {isa = PBXBuildFile; fileRef = 3014192C620D63DEDBEC9F6C /* test_opendialog.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
|
+
3014192C620D63DEDBEC9F6C /* test_opendialog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = test_opendialog.c; path = ../../test/test_opendialog.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
|
+
60AA47EA86D0779CEDD76E2A /* test_opendialog */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = test_opendialog; path = test_opendialog; 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
|
+
D3B0D85A769EFF0C05C4DE9A /* 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
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */ = {
|
64
|
+
isa = PBXGroup;
|
65
|
+
children = (
|
66
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
67
|
+
360631F05E40EAA245DC7830 /* nfd.xcodeproj */,
|
68
|
+
);
|
69
|
+
name = Projects;
|
70
|
+
sourceTree = "<group>";
|
71
|
+
};
|
72
|
+
A6C936B49B3FADE6EA134CF4 /* Products */ = {
|
73
|
+
isa = PBXGroup;
|
74
|
+
children = (
|
75
|
+
60AA47EA86D0779CEDD76E2A /* test_opendialog */,
|
76
|
+
);
|
77
|
+
name = Products;
|
78
|
+
sourceTree = "<group>";
|
79
|
+
};
|
80
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */ = {
|
81
|
+
isa = PBXGroup;
|
82
|
+
children = (
|
83
|
+
4B74DEAE2FBBE6E0B3A914EE /* Foundation.framework */,
|
84
|
+
893A8412D69D7A444CBC7A52 /* AppKit.framework */,
|
85
|
+
);
|
86
|
+
name = Frameworks;
|
87
|
+
sourceTree = "<group>";
|
88
|
+
};
|
89
|
+
FDE62101506C4BF322B0AF41 /* test_opendialog */ = {
|
90
|
+
isa = PBXGroup;
|
91
|
+
children = (
|
92
|
+
3014192C620D63DEDBEC9F6C /* test_opendialog.c */,
|
93
|
+
BBF76781A7E87333FA200DC1 /* Frameworks */,
|
94
|
+
A6C936B49B3FADE6EA134CF4 /* Products */,
|
95
|
+
9D968EAA920D05DCE0E0A4EA /* Projects */,
|
96
|
+
);
|
97
|
+
name = test_opendialog;
|
98
|
+
sourceTree = "<group>";
|
99
|
+
};
|
100
|
+
/* End PBXGroup section */
|
101
|
+
|
102
|
+
/* Begin PBXNativeTarget section */
|
103
|
+
A7F3CA90A159CC0294F528D0 /* test_opendialog */ = {
|
104
|
+
isa = PBXNativeTarget;
|
105
|
+
buildConfigurationList = C1EC20B964DA476BF40026F9 /* Build configuration list for PBXNativeTarget "test_opendialog" */;
|
106
|
+
buildPhases = (
|
107
|
+
439858FAE6867FAC75AC5F3A /* Resources */,
|
108
|
+
AD45725150339903DF597891 /* Sources */,
|
109
|
+
D3B0D85A769EFF0C05C4DE9A /* Frameworks */,
|
110
|
+
);
|
111
|
+
buildRules = (
|
112
|
+
);
|
113
|
+
dependencies = (
|
114
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
115
|
+
4B0085C3621320F5522F1C03 /* PBXTargetDependency */,
|
116
|
+
);
|
117
|
+
name = test_opendialog;
|
118
|
+
productInstallPath = "$(HOME)/bin";
|
119
|
+
productName = test_opendialog;
|
120
|
+
productReference = 60AA47EA86D0779CEDD76E2A /* test_opendialog */;
|
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_opendialog" */;
|
129
|
+
compatibilityVersion = "Xcode 3.2";
|
130
|
+
hasScannedForEncodings = 1;
|
131
|
+
mainGroup = FDE62101506C4BF322B0AF41 /* test_opendialog */;
|
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
|
+
A7F3CA90A159CC0294F528D0 /* test_opendialog */,
|
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
|
+
439858FAE6867FAC75AC5F3A /* Resources */ = {
|
162
|
+
isa = PBXResourcesBuildPhase;
|
163
|
+
buildActionMask = 2147483647;
|
164
|
+
files = (
|
165
|
+
);
|
166
|
+
runOnlyForDeploymentPostprocessing = 0;
|
167
|
+
};
|
168
|
+
/* End PBXResourcesBuildPhase section */
|
169
|
+
|
170
|
+
/* Begin PBXSourcesBuildPhase section */
|
171
|
+
AD45725150339903DF597891 /* Sources */ = {
|
172
|
+
isa = PBXSourcesBuildPhase;
|
173
|
+
buildActionMask = 2147483647;
|
174
|
+
files = (
|
175
|
+
DA9A5B4431FFCE36E40DE984 /* test_opendialog.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
|
+
188342B02F95DDE21FB1D8F0 /* Debug */ = {
|
194
|
+
isa = XCBuildConfiguration;
|
195
|
+
buildSettings = {
|
196
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
197
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
198
|
+
COPY_PHASE_STRIP = NO;
|
199
|
+
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
200
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
201
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
202
|
+
DEBUG,
|
203
|
+
);
|
204
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
205
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
206
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
207
|
+
LIBRARY_SEARCH_PATHS = (
|
208
|
+
../lib/Debug/x64,
|
209
|
+
);
|
210
|
+
OBJROOT = obj/x64/Debug/test_opendialog;
|
211
|
+
ONLY_ACTIVE_ARCH = YES;
|
212
|
+
OTHER_LDFLAGS = (
|
213
|
+
"-lnfd_d",
|
214
|
+
);
|
215
|
+
SYMROOT = ../bin;
|
216
|
+
USER_HEADER_SEARCH_PATHS = (
|
217
|
+
../../src/include,
|
218
|
+
);
|
219
|
+
};
|
220
|
+
name = Debug;
|
221
|
+
};
|
222
|
+
2B21E9B97884DFEBEEA3DFF9 /* Release */ = {
|
223
|
+
isa = XCBuildConfiguration;
|
224
|
+
buildSettings = {
|
225
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
226
|
+
CONFIGURATION_BUILD_DIR = ../bin;
|
227
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
228
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
229
|
+
INSTALL_PATH = /usr/local/bin;
|
230
|
+
PRODUCT_NAME = test_opendialog;
|
231
|
+
};
|
232
|
+
name = Release;
|
233
|
+
};
|
234
|
+
3AC688EA60ECB89CC7F3AF2A /* Release */ = {
|
235
|
+
isa = XCBuildConfiguration;
|
236
|
+
buildSettings = {
|
237
|
+
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
238
|
+
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
239
|
+
GCC_OPTIMIZATION_LEVEL = 3;
|
240
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
241
|
+
NDEBUG,
|
242
|
+
);
|
243
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
244
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
245
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
246
|
+
LIBRARY_SEARCH_PATHS = (
|
247
|
+
../lib/Release/x64,
|
248
|
+
);
|
249
|
+
OBJROOT = obj/x64/Release/test_opendialog;
|
250
|
+
ONLY_ACTIVE_ARCH = NO;
|
251
|
+
SYMROOT = ../bin;
|
252
|
+
USER_HEADER_SEARCH_PATHS = (
|
253
|
+
../../src/include,
|
254
|
+
);
|
255
|
+
};
|
256
|
+
name = Release;
|
257
|
+
};
|
258
|
+
888E12FF4BF9D4B18A9D793F /* 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_opendialog_d;
|
267
|
+
};
|
268
|
+
name = Debug;
|
269
|
+
};
|
270
|
+
/* End XCBuildConfiguration section */
|
271
|
+
|
272
|
+
/* Begin XCConfigurationList section */
|
273
|
+
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "test_opendialog" */ = {
|
274
|
+
isa = XCConfigurationList;
|
275
|
+
buildConfigurations = (
|
276
|
+
3AC688EA60ECB89CC7F3AF2A /* Release */,
|
277
|
+
188342B02F95DDE21FB1D8F0 /* Debug */,
|
278
|
+
);
|
279
|
+
defaultConfigurationIsVisible = 0;
|
280
|
+
defaultConfigurationName = Release;
|
281
|
+
};
|
282
|
+
C1EC20B964DA476BF40026F9 /* Build configuration list for PBXNativeTarget "test_opendialog" */ = {
|
283
|
+
isa = XCConfigurationList;
|
284
|
+
buildConfigurations = (
|
285
|
+
2B21E9B97884DFEBEEA3DFF9 /* Release */,
|
286
|
+
888E12FF4BF9D4B18A9D793F /* Debug */,
|
287
|
+
);
|
288
|
+
defaultConfigurationIsVisible = 0;
|
289
|
+
defaultConfigurationName = Release;
|
290
|
+
};
|
291
|
+
/* End XCConfigurationList section */
|
292
|
+
};
|
293
|
+
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
294
|
+
}
|