filedialog 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/gempush.yml +31 -0
  3. data/.gitignore +13 -0
  4. data/.gitmodules +3 -0
  5. data/.rubocop.yml +19 -0
  6. data/Gemfile +10 -0
  7. data/Gemfile.lock +30 -0
  8. data/LICENSE +674 -0
  9. data/README.md +22 -0
  10. data/Rakefile +35 -0
  11. data/bin/console +25 -0
  12. data/deps/filedialogbuilddeps.rb +49 -0
  13. data/deps/nativefiledialog/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  14. data/deps/nativefiledialog/.gitignore +181 -0
  15. data/deps/nativefiledialog/LICENSE +16 -0
  16. data/deps/nativefiledialog/README.md +180 -0
  17. data/deps/nativefiledialog/build/dont_run_premake.txt +1 -0
  18. data/deps/nativefiledialog/build/gmake_linux/Makefile +101 -0
  19. data/deps/nativefiledialog/build/gmake_linux/nfd.make +192 -0
  20. data/deps/nativefiledialog/build/gmake_linux/test_opendialog.make +188 -0
  21. data/deps/nativefiledialog/build/gmake_linux/test_opendialogmultiple.make +188 -0
  22. data/deps/nativefiledialog/build/gmake_linux/test_pickfolder.make +188 -0
  23. data/deps/nativefiledialog/build/gmake_linux/test_savedialog.make +188 -0
  24. data/deps/nativefiledialog/build/gmake_linux_zenity/Makefile +101 -0
  25. data/deps/nativefiledialog/build/gmake_linux_zenity/nfd.make +192 -0
  26. data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialog.make +188 -0
  27. data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialogmultiple.make +188 -0
  28. data/deps/nativefiledialog/build/gmake_linux_zenity/test_pickfolder.make +188 -0
  29. data/deps/nativefiledialog/build/gmake_linux_zenity/test_savedialog.make +188 -0
  30. data/deps/nativefiledialog/build/gmake_macosx/Makefile +85 -0
  31. data/deps/nativefiledialog/build/gmake_macosx/nfd.make +154 -0
  32. data/deps/nativefiledialog/build/gmake_macosx/test_opendialog.make +150 -0
  33. data/deps/nativefiledialog/build/gmake_macosx/test_opendialogmultiple.make +150 -0
  34. data/deps/nativefiledialog/build/gmake_macosx/test_pickfolder.make +150 -0
  35. data/deps/nativefiledialog/build/gmake_macosx/test_savedialog.make +150 -0
  36. data/deps/nativefiledialog/build/gmake_windows/Makefile +101 -0
  37. data/deps/nativefiledialog/build/gmake_windows/nfd.make +192 -0
  38. data/deps/nativefiledialog/build/gmake_windows/test_opendialog.make +188 -0
  39. data/deps/nativefiledialog/build/gmake_windows/test_opendialogmultiple.make +188 -0
  40. data/deps/nativefiledialog/build/gmake_windows/test_pickfolder.make +188 -0
  41. data/deps/nativefiledialog/build/gmake_windows/test_savedialog.make +188 -0
  42. data/deps/nativefiledialog/build/premake5.lua +265 -0
  43. data/deps/nativefiledialog/build/vs2010/NativeFileDialog.sln +78 -0
  44. data/deps/nativefiledialog/build/vs2010/nfd.vcxproj +168 -0
  45. data/deps/nativefiledialog/build/vs2010/nfd.vcxproj.filters +20 -0
  46. data/deps/nativefiledialog/build/vs2010/test_opendialog.vcxproj +182 -0
  47. data/deps/nativefiledialog/build/vs2010/test_opendialogmultiple.vcxproj +182 -0
  48. data/deps/nativefiledialog/build/vs2010/test_pickfolder.vcxproj +182 -0
  49. data/deps/nativefiledialog/build/vs2010/test_savedialog.vcxproj +182 -0
  50. data/deps/nativefiledialog/build/xcode4/NativeFileDialog.xcworkspace/contents.xcworkspacedata +19 -0
  51. data/deps/nativefiledialog/build/xcode4/nfd.xcodeproj/project.pbxproj +228 -0
  52. data/deps/nativefiledialog/build/xcode4/test_opendialog.xcodeproj/project.pbxproj +294 -0
  53. data/deps/nativefiledialog/build/xcode4/test_opendialogmultiple.xcodeproj/project.pbxproj +294 -0
  54. data/deps/nativefiledialog/build/xcode4/test_pickfolder.xcodeproj/project.pbxproj +294 -0
  55. data/deps/nativefiledialog/build/xcode4/test_savedialog.xcodeproj/project.pbxproj +294 -0
  56. data/deps/nativefiledialog/docs/build.md +39 -0
  57. data/deps/nativefiledialog/docs/contributing.md +25 -0
  58. data/deps/nativefiledialog/screens/open_cocoa.png +0 -0
  59. data/deps/nativefiledialog/screens/open_gtk3.png +0 -0
  60. data/deps/nativefiledialog/screens/open_win.png +0 -0
  61. data/deps/nativefiledialog/src/common.h +21 -0
  62. data/deps/nativefiledialog/src/include/nfd.h +74 -0
  63. data/deps/nativefiledialog/src/nfd_cocoa.m +286 -0
  64. data/deps/nativefiledialog/src/nfd_common.c +142 -0
  65. data/deps/nativefiledialog/src/nfd_common.h +39 -0
  66. data/deps/nativefiledialog/src/nfd_gtk.c +379 -0
  67. data/deps/nativefiledialog/src/nfd_win.cpp +762 -0
  68. data/deps/nativefiledialog/src/nfd_zenity.c +307 -0
  69. data/deps/nativefiledialog/src/simple_exec.h +218 -0
  70. data/deps/nativefiledialog/test/test_opendialog.c +29 -0
  71. data/deps/nativefiledialog/test/test_opendialogmultiple.c +32 -0
  72. data/deps/nativefiledialog/test/test_pickfolder.c +29 -0
  73. data/deps/nativefiledialog/test/test_savedialog.c +28 -0
  74. data/ext/filedialog/extconf.rb +58 -0
  75. data/ext/filedialog/filedialog.c +118 -0
  76. data/filedialog.gemspec +48 -0
  77. data/lib/filedialog.rb +50 -0
  78. data/lib/filedialog/version.rb +5 -0
  79. metadata +137 -0
@@ -0,0 +1,150 @@
1
+ # GNU Make project makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ .PHONY: clean prebuild prelink
12
+
13
+ ifeq ($(config),release_x64)
14
+ ifeq ($(origin CC), default)
15
+ CC = clang
16
+ endif
17
+ ifeq ($(origin CXX), default)
18
+ CXX = clang++
19
+ endif
20
+ ifeq ($(origin AR), default)
21
+ AR = ar
22
+ endif
23
+ TARGETDIR = ../bin
24
+ TARGET = $(TARGETDIR)/test_pickfolder
25
+ OBJDIR = obj/x64/Release/test_pickfolder
26
+ DEFINES += -DNDEBUG
27
+ INCLUDES += -I../../src/include
28
+ FORCE_INCLUDE +=
29
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
30
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -O2
31
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -O2
32
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
33
+ LIBS += ../lib/Release/x64/libnfd.a -framework Foundation -framework AppKit
34
+ LDDEPS += ../lib/Release/x64/libnfd.a
35
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Release/x64 -m64
36
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
37
+ define PREBUILDCMDS
38
+ endef
39
+ define PRELINKCMDS
40
+ endef
41
+ define POSTBUILDCMDS
42
+ endef
43
+ all: prebuild prelink $(TARGET)
44
+ @:
45
+
46
+ endif
47
+
48
+ ifeq ($(config),debug_x64)
49
+ ifeq ($(origin CC), default)
50
+ CC = clang
51
+ endif
52
+ ifeq ($(origin CXX), default)
53
+ CXX = clang++
54
+ endif
55
+ ifeq ($(origin AR), default)
56
+ AR = ar
57
+ endif
58
+ TARGETDIR = ../bin
59
+ TARGET = $(TARGETDIR)/test_pickfolder_d
60
+ OBJDIR = obj/x64/Debug/test_pickfolder
61
+ DEFINES += -DDEBUG
62
+ INCLUDES += -I../../src/include
63
+ FORCE_INCLUDE +=
64
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
65
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -g
66
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -g
67
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
68
+ LIBS += -framework Foundation -framework AppKit -lnfd_d
69
+ LDDEPS +=
70
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Debug/x64 -m64
71
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
72
+ define PREBUILDCMDS
73
+ endef
74
+ define PRELINKCMDS
75
+ endef
76
+ define POSTBUILDCMDS
77
+ endef
78
+ all: prebuild prelink $(TARGET)
79
+ @:
80
+
81
+ endif
82
+
83
+ OBJECTS := \
84
+ $(OBJDIR)/test_pickfolder.o \
85
+
86
+ RESOURCES := \
87
+
88
+ CUSTOMFILES := \
89
+
90
+ SHELLTYPE := posix
91
+ ifeq (.exe,$(findstring .exe,$(ComSpec)))
92
+ SHELLTYPE := msdos
93
+ endif
94
+
95
+ $(TARGET): $(GCH) ${CUSTOMFILES} $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR)
96
+ @echo Linking test_pickfolder
97
+ $(SILENT) $(LINKCMD)
98
+ $(POSTBUILDCMDS)
99
+
100
+ $(CUSTOMFILES): | $(OBJDIR)
101
+
102
+ $(TARGETDIR):
103
+ @echo Creating $(TARGETDIR)
104
+ ifeq (posix,$(SHELLTYPE))
105
+ $(SILENT) mkdir -p $(TARGETDIR)
106
+ else
107
+ $(SILENT) mkdir $(subst /,\\,$(TARGETDIR))
108
+ endif
109
+
110
+ $(OBJDIR):
111
+ @echo Creating $(OBJDIR)
112
+ ifeq (posix,$(SHELLTYPE))
113
+ $(SILENT) mkdir -p $(OBJDIR)
114
+ else
115
+ $(SILENT) mkdir $(subst /,\\,$(OBJDIR))
116
+ endif
117
+
118
+ clean:
119
+ @echo Cleaning test_pickfolder
120
+ ifeq (posix,$(SHELLTYPE))
121
+ $(SILENT) rm -f $(TARGET)
122
+ $(SILENT) rm -rf $(OBJDIR)
123
+ else
124
+ $(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET))
125
+ $(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR))
126
+ endif
127
+
128
+ prebuild:
129
+ $(PREBUILDCMDS)
130
+
131
+ prelink:
132
+ $(PRELINKCMDS)
133
+
134
+ ifneq (,$(PCH))
135
+ $(OBJECTS): $(GCH) $(PCH) | $(OBJDIR)
136
+ $(GCH): $(PCH) | $(OBJDIR)
137
+ @echo $(notdir $<)
138
+ $(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
139
+ else
140
+ $(OBJECTS): | $(OBJDIR)
141
+ endif
142
+
143
+ $(OBJDIR)/test_pickfolder.o: ../../test/test_pickfolder.c
144
+ @echo $(notdir $<)
145
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
146
+
147
+ -include $(OBJECTS:%.o=%.d)
148
+ ifneq (,$(PCH))
149
+ -include $(OBJDIR)/$(notdir $(PCH)).d
150
+ endif
@@ -0,0 +1,150 @@
1
+ # GNU Make project makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ .PHONY: clean prebuild prelink
12
+
13
+ ifeq ($(config),release_x64)
14
+ ifeq ($(origin CC), default)
15
+ CC = clang
16
+ endif
17
+ ifeq ($(origin CXX), default)
18
+ CXX = clang++
19
+ endif
20
+ ifeq ($(origin AR), default)
21
+ AR = ar
22
+ endif
23
+ TARGETDIR = ../bin
24
+ TARGET = $(TARGETDIR)/test_savedialog
25
+ OBJDIR = obj/x64/Release/test_savedialog
26
+ DEFINES += -DNDEBUG
27
+ INCLUDES += -I../../src/include
28
+ FORCE_INCLUDE +=
29
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
30
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -O2
31
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -O2
32
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
33
+ LIBS += ../lib/Release/x64/libnfd.a -framework Foundation -framework AppKit
34
+ LDDEPS += ../lib/Release/x64/libnfd.a
35
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Release/x64 -m64
36
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
37
+ define PREBUILDCMDS
38
+ endef
39
+ define PRELINKCMDS
40
+ endef
41
+ define POSTBUILDCMDS
42
+ endef
43
+ all: prebuild prelink $(TARGET)
44
+ @:
45
+
46
+ endif
47
+
48
+ ifeq ($(config),debug_x64)
49
+ ifeq ($(origin CC), default)
50
+ CC = clang
51
+ endif
52
+ ifeq ($(origin CXX), default)
53
+ CXX = clang++
54
+ endif
55
+ ifeq ($(origin AR), default)
56
+ AR = ar
57
+ endif
58
+ TARGETDIR = ../bin
59
+ TARGET = $(TARGETDIR)/test_savedialog_d
60
+ OBJDIR = obj/x64/Debug/test_savedialog
61
+ DEFINES += -DDEBUG
62
+ INCLUDES += -I../../src/include
63
+ FORCE_INCLUDE +=
64
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
65
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -g
66
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -g
67
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
68
+ LIBS += -framework Foundation -framework AppKit -lnfd_d
69
+ LDDEPS +=
70
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Debug/x64 -m64
71
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
72
+ define PREBUILDCMDS
73
+ endef
74
+ define PRELINKCMDS
75
+ endef
76
+ define POSTBUILDCMDS
77
+ endef
78
+ all: prebuild prelink $(TARGET)
79
+ @:
80
+
81
+ endif
82
+
83
+ OBJECTS := \
84
+ $(OBJDIR)/test_savedialog.o \
85
+
86
+ RESOURCES := \
87
+
88
+ CUSTOMFILES := \
89
+
90
+ SHELLTYPE := posix
91
+ ifeq (.exe,$(findstring .exe,$(ComSpec)))
92
+ SHELLTYPE := msdos
93
+ endif
94
+
95
+ $(TARGET): $(GCH) ${CUSTOMFILES} $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR)
96
+ @echo Linking test_savedialog
97
+ $(SILENT) $(LINKCMD)
98
+ $(POSTBUILDCMDS)
99
+
100
+ $(CUSTOMFILES): | $(OBJDIR)
101
+
102
+ $(TARGETDIR):
103
+ @echo Creating $(TARGETDIR)
104
+ ifeq (posix,$(SHELLTYPE))
105
+ $(SILENT) mkdir -p $(TARGETDIR)
106
+ else
107
+ $(SILENT) mkdir $(subst /,\\,$(TARGETDIR))
108
+ endif
109
+
110
+ $(OBJDIR):
111
+ @echo Creating $(OBJDIR)
112
+ ifeq (posix,$(SHELLTYPE))
113
+ $(SILENT) mkdir -p $(OBJDIR)
114
+ else
115
+ $(SILENT) mkdir $(subst /,\\,$(OBJDIR))
116
+ endif
117
+
118
+ clean:
119
+ @echo Cleaning test_savedialog
120
+ ifeq (posix,$(SHELLTYPE))
121
+ $(SILENT) rm -f $(TARGET)
122
+ $(SILENT) rm -rf $(OBJDIR)
123
+ else
124
+ $(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET))
125
+ $(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR))
126
+ endif
127
+
128
+ prebuild:
129
+ $(PREBUILDCMDS)
130
+
131
+ prelink:
132
+ $(PRELINKCMDS)
133
+
134
+ ifneq (,$(PCH))
135
+ $(OBJECTS): $(GCH) $(PCH) | $(OBJDIR)
136
+ $(GCH): $(PCH) | $(OBJDIR)
137
+ @echo $(notdir $<)
138
+ $(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
139
+ else
140
+ $(OBJECTS): | $(OBJDIR)
141
+ endif
142
+
143
+ $(OBJDIR)/test_savedialog.o: ../../test/test_savedialog.c
144
+ @echo $(notdir $<)
145
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
146
+
147
+ -include $(OBJECTS:%.o=%.d)
148
+ ifneq (,$(PCH))
149
+ -include $(OBJDIR)/$(notdir $(PCH)).d
150
+ endif
@@ -0,0 +1,101 @@
1
+ # GNU Make workspace makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ ifeq ($(config),release_x64)
12
+ nfd_config = release_x64
13
+ test_pickfolder_config = release_x64
14
+ test_opendialog_config = release_x64
15
+ test_opendialogmultiple_config = release_x64
16
+ test_savedialog_config = release_x64
17
+ endif
18
+ ifeq ($(config),release_x86)
19
+ nfd_config = release_x86
20
+ test_pickfolder_config = release_x86
21
+ test_opendialog_config = release_x86
22
+ test_opendialogmultiple_config = release_x86
23
+ test_savedialog_config = release_x86
24
+ endif
25
+ ifeq ($(config),debug_x64)
26
+ nfd_config = debug_x64
27
+ test_pickfolder_config = debug_x64
28
+ test_opendialog_config = debug_x64
29
+ test_opendialogmultiple_config = debug_x64
30
+ test_savedialog_config = debug_x64
31
+ endif
32
+ ifeq ($(config),debug_x86)
33
+ nfd_config = debug_x86
34
+ test_pickfolder_config = debug_x86
35
+ test_opendialog_config = debug_x86
36
+ test_opendialogmultiple_config = debug_x86
37
+ test_savedialog_config = debug_x86
38
+ endif
39
+
40
+ PROJECTS := nfd test_pickfolder test_opendialog test_opendialogmultiple test_savedialog
41
+
42
+ .PHONY: all clean help $(PROJECTS)
43
+
44
+ all: $(PROJECTS)
45
+
46
+ nfd:
47
+ ifneq (,$(nfd_config))
48
+ @echo "==== Building nfd ($(nfd_config)) ===="
49
+ @${MAKE} --no-print-directory -C . -f nfd.make config=$(nfd_config)
50
+ endif
51
+
52
+ test_pickfolder: nfd
53
+ ifneq (,$(test_pickfolder_config))
54
+ @echo "==== Building test_pickfolder ($(test_pickfolder_config)) ===="
55
+ @${MAKE} --no-print-directory -C . -f test_pickfolder.make config=$(test_pickfolder_config)
56
+ endif
57
+
58
+ test_opendialog: nfd
59
+ ifneq (,$(test_opendialog_config))
60
+ @echo "==== Building test_opendialog ($(test_opendialog_config)) ===="
61
+ @${MAKE} --no-print-directory -C . -f test_opendialog.make config=$(test_opendialog_config)
62
+ endif
63
+
64
+ test_opendialogmultiple: nfd
65
+ ifneq (,$(test_opendialogmultiple_config))
66
+ @echo "==== Building test_opendialogmultiple ($(test_opendialogmultiple_config)) ===="
67
+ @${MAKE} --no-print-directory -C . -f test_opendialogmultiple.make config=$(test_opendialogmultiple_config)
68
+ endif
69
+
70
+ test_savedialog: nfd
71
+ ifneq (,$(test_savedialog_config))
72
+ @echo "==== Building test_savedialog ($(test_savedialog_config)) ===="
73
+ @${MAKE} --no-print-directory -C . -f test_savedialog.make config=$(test_savedialog_config)
74
+ endif
75
+
76
+ clean:
77
+ @${MAKE} --no-print-directory -C . -f nfd.make clean
78
+ @${MAKE} --no-print-directory -C . -f test_pickfolder.make clean
79
+ @${MAKE} --no-print-directory -C . -f test_opendialog.make clean
80
+ @${MAKE} --no-print-directory -C . -f test_opendialogmultiple.make clean
81
+ @${MAKE} --no-print-directory -C . -f test_savedialog.make clean
82
+
83
+ help:
84
+ @echo "Usage: make [config=name] [target]"
85
+ @echo ""
86
+ @echo "CONFIGURATIONS:"
87
+ @echo " release_x64"
88
+ @echo " release_x86"
89
+ @echo " debug_x64"
90
+ @echo " debug_x86"
91
+ @echo ""
92
+ @echo "TARGETS:"
93
+ @echo " all (default)"
94
+ @echo " clean"
95
+ @echo " nfd"
96
+ @echo " test_pickfolder"
97
+ @echo " test_opendialog"
98
+ @echo " test_opendialogmultiple"
99
+ @echo " test_savedialog"
100
+ @echo ""
101
+ @echo "For more information, see https://github.com/premake/premake-core/wiki"
@@ -0,0 +1,192 @@
1
+ # GNU Make project makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ .PHONY: clean prebuild prelink
12
+
13
+ ifeq ($(config),release_x64)
14
+ RESCOMP = windres
15
+ TARGETDIR = ../lib/Release/x64
16
+ TARGET = $(TARGETDIR)/nfd.lib
17
+ OBJDIR = ../obj/x64/Release/nfd
18
+ DEFINES += -DNDEBUG
19
+ INCLUDES += -I../../src/include
20
+ FORCE_INCLUDE +=
21
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
22
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -O2 -Wall -Wextra -fno-exceptions
23
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -O2 -Wall -Wextra -fno-exceptions
24
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
25
+ LIBS +=
26
+ LDDEPS +=
27
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 -s
28
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
29
+ define PREBUILDCMDS
30
+ endef
31
+ define PRELINKCMDS
32
+ endef
33
+ define POSTBUILDCMDS
34
+ endef
35
+ all: prebuild prelink $(TARGET)
36
+ @:
37
+
38
+ endif
39
+
40
+ ifeq ($(config),release_x86)
41
+ RESCOMP = windres
42
+ TARGETDIR = ../lib/Release/x86
43
+ TARGET = $(TARGETDIR)/nfd.lib
44
+ OBJDIR = ../obj/x86/Release/nfd
45
+ DEFINES += -DNDEBUG
46
+ INCLUDES += -I../../src/include
47
+ FORCE_INCLUDE +=
48
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
49
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O2 -Wall -Wextra -fno-exceptions
50
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O2 -Wall -Wextra -fno-exceptions
51
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
52
+ LIBS +=
53
+ LDDEPS +=
54
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
55
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
56
+ define PREBUILDCMDS
57
+ endef
58
+ define PRELINKCMDS
59
+ endef
60
+ define POSTBUILDCMDS
61
+ endef
62
+ all: prebuild prelink $(TARGET)
63
+ @:
64
+
65
+ endif
66
+
67
+ ifeq ($(config),debug_x64)
68
+ RESCOMP = windres
69
+ TARGETDIR = ../lib/Debug/x64
70
+ TARGET = $(TARGETDIR)/nfd_d.lib
71
+ OBJDIR = ../obj/x64/Debug/nfd
72
+ DEFINES += -DDEBUG
73
+ INCLUDES += -I../../src/include
74
+ FORCE_INCLUDE +=
75
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
76
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -g -Wall -Wextra -fno-exceptions
77
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -g -Wall -Wextra -fno-exceptions
78
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
79
+ LIBS +=
80
+ LDDEPS +=
81
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64
82
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
83
+ define PREBUILDCMDS
84
+ endef
85
+ define PRELINKCMDS
86
+ endef
87
+ define POSTBUILDCMDS
88
+ endef
89
+ all: prebuild prelink $(TARGET)
90
+ @:
91
+
92
+ endif
93
+
94
+ ifeq ($(config),debug_x86)
95
+ RESCOMP = windres
96
+ TARGETDIR = ../lib/Debug/x86
97
+ TARGET = $(TARGETDIR)/nfd_d.lib
98
+ OBJDIR = ../obj/x86/Debug/nfd
99
+ DEFINES += -DDEBUG
100
+ INCLUDES += -I../../src/include
101
+ FORCE_INCLUDE +=
102
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
103
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g -Wall -Wextra -fno-exceptions
104
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g -Wall -Wextra -fno-exceptions
105
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
106
+ LIBS +=
107
+ LDDEPS +=
108
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32
109
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
110
+ define PREBUILDCMDS
111
+ endef
112
+ define PRELINKCMDS
113
+ endef
114
+ define POSTBUILDCMDS
115
+ endef
116
+ all: prebuild prelink $(TARGET)
117
+ @:
118
+
119
+ endif
120
+
121
+ OBJECTS := \
122
+ $(OBJDIR)/nfd_common.o \
123
+ $(OBJDIR)/nfd_win.o \
124
+
125
+ RESOURCES := \
126
+
127
+ CUSTOMFILES := \
128
+
129
+ SHELLTYPE := posix
130
+ ifeq (.exe,$(findstring .exe,$(ComSpec)))
131
+ SHELLTYPE := msdos
132
+ endif
133
+
134
+ $(TARGET): $(GCH) ${CUSTOMFILES} $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR)
135
+ @echo Linking nfd
136
+ $(SILENT) $(LINKCMD)
137
+ $(POSTBUILDCMDS)
138
+
139
+ $(CUSTOMFILES): | $(OBJDIR)
140
+
141
+ $(TARGETDIR):
142
+ @echo Creating $(TARGETDIR)
143
+ ifeq (posix,$(SHELLTYPE))
144
+ $(SILENT) mkdir -p $(TARGETDIR)
145
+ else
146
+ $(SILENT) mkdir $(subst /,\\,$(TARGETDIR))
147
+ endif
148
+
149
+ $(OBJDIR):
150
+ @echo Creating $(OBJDIR)
151
+ ifeq (posix,$(SHELLTYPE))
152
+ $(SILENT) mkdir -p $(OBJDIR)
153
+ else
154
+ $(SILENT) mkdir $(subst /,\\,$(OBJDIR))
155
+ endif
156
+
157
+ clean:
158
+ @echo Cleaning nfd
159
+ ifeq (posix,$(SHELLTYPE))
160
+ $(SILENT) rm -f $(TARGET)
161
+ $(SILENT) rm -rf $(OBJDIR)
162
+ else
163
+ $(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET))
164
+ $(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR))
165
+ endif
166
+
167
+ prebuild:
168
+ $(PREBUILDCMDS)
169
+
170
+ prelink:
171
+ $(PRELINKCMDS)
172
+
173
+ ifneq (,$(PCH))
174
+ $(OBJECTS): $(GCH) $(PCH) | $(OBJDIR)
175
+ $(GCH): $(PCH) | $(OBJDIR)
176
+ @echo $(notdir $<)
177
+ $(SILENT) $(CXX) -x c++-header $(ALL_CXXFLAGS) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
178
+ else
179
+ $(OBJECTS): | $(OBJDIR)
180
+ endif
181
+
182
+ $(OBJDIR)/nfd_common.o: ../../src/nfd_common.c
183
+ @echo $(notdir $<)
184
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
185
+ $(OBJDIR)/nfd_win.o: ../../src/nfd_win.cpp
186
+ @echo $(notdir $<)
187
+ $(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
188
+
189
+ -include $(OBJECTS:%.o=%.d)
190
+ ifneq (,$(PCH))
191
+ -include $(OBJDIR)/$(notdir $(PCH)).d
192
+ endif