| 62 | #undef BUILD_CONFIG_SENTINEL |
| 63 | |
| 64 | static inline |
| 65 | bool dpf_check_build_status() noexcept |
| 66 | { |
| 67 | return ( |
| 68 | #ifdef DPF_DEBUG |
| 69 | fail_to_link_is_mismatch_dpf_debug_on.ok && |
| 70 | #else |
| 71 | fail_to_link_is_mismatch_dpf_debug_off.ok && |
| 72 | #endif |
| 73 | #ifdef DGL_USE_FILE_BROWSER |
| 74 | fail_to_link_is_mismatch_dgl_use_file_browser_on.ok && |
| 75 | #else |
| 76 | fail_to_link_is_mismatch_dgl_use_file_browser_off.ok && |
| 77 | #endif |
| 78 | #ifdef DGL_USE_WEB_VIEW |
| 79 | fail_to_link_is_mismatch_dgl_use_web_view_on.ok && |
| 80 | #else |
| 81 | fail_to_link_is_mismatch_dgl_use_web_view_off.ok && |
| 82 | #endif |
| 83 | #ifdef DGL_NO_SHARED_RESOURCES |
| 84 | fail_to_link_is_mismatch_dgl_no_shared_resources_on.ok && |
| 85 | #else |
| 86 | fail_to_link_is_mismatch_dgl_no_shared_resources_off.ok && |
| 87 | #endif |
| 88 | true |
| 89 | ); |
| 90 | } |
| 91 | |
| 92 | // -------------------------------------------------------------------------------------------------------------------- |
| 93 | |