~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to config/config.h

  • Committer: Teus Benschop
  • Date: 2024-08-29 10:06:23 UTC
  • Revision ID: teusjannette@gmail.com-20240829100623-urud1eg0hmhru4yc
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#define RUN_SECURE_SERVER 1
41
41
 
42
42
 
43
 
// Whether to use std::filesystem.
44
 
#define USE_STD_FILESYSTEM 1
45
 
 
46
 
 
47
43
#ifdef HAVE_WINDOWS
48
44
#undef HAVE_CLOUD
49
45
#define HAVE_CLIENT 1
55
51
#undef DIRECTORY_SEPARATOR
56
52
#define DIRECTORY_SEPARATOR R"(\)"
57
53
#undef RUN_SECURE_SERVER
58
 
#undef USE_STD_FILESYSTEM
 
54
#define USE_STD_FILESYSTEM 1
59
55
#endif
60
56
 
61
57
 
69
65
#define HAVE_BARE_BROWSER 1
70
66
#define HAVE_TINY_JOURNAL 1
71
67
#undef RUN_SECURE_SERVER
72
 
#undef USE_STD_FILESYSTEM
 
68
// Testing the std::fileystem in August 2024.
 
69
// Results: 5 out of 6 devices tested had crahes in C++.
 
70
// See https://github.com/bibledit/cloud/issues/952 for more info.
73
71
#endif
74
72
 
75
73
 
76
 
#ifdef HAVE_MAC
 
74
#ifdef HAVE_MACOS
77
75
#undef HAVE_CLOUD
78
76
#define HAVE_CLIENT 1
79
77
#define HAVE_BARE_BROWSER 1
80
78
#undef RUN_SECURE_SERVER
81
 
#undef USE_STD_FILESYSTEM
 
79
#define USE_STD_FILESYSTEM 1
82
80
#endif
83
81
 
84
82
 
88
86
#define HAVE_PARATEXT 1
89
87
#define HAVE_BARE_BROWSER 1
90
88
#undef RUN_SECURE_SERVER
91
 
#undef USE_STD_FILESYSTEM
92
89
#endif
93
90
 
94
91
 
102
99
#define HAVE_BARE_BROWSER 1
103
100
#define HAVE_TINY_JOURNAL 1
104
101
#undef RUN_SECURE_SERVER
105
 
#undef USE_STD_FILESYSTEM
 
102
// The std::filesystem makes the app so slow in the iOS simulator
 
103
// that it appears to be suck during the setup phase, where it copies files.
 
104
// This was tested in August 2024.
106
105
#endif