()
| 44 | } |
| 45 | |
| 46 | function _runningFromSource() { |
| 47 | let binary = Gio.File.new_for_path(System.programInvocationName); |
| 48 | let sourceBinary = Gio.File.new_for_path(`./src/${name}`); |
| 49 | return binary.equal(sourceBinary); |
| 50 | } |
| 51 | |
| 52 | function _runningFromMesonSource() { |
| 53 | return GLib.getenv('MESON_BUILD_ROOT') && |
no outgoing calls
no test coverage detected