22 lines
631 B
Python
22 lines
631 B
Python
#-----------------------------------------------------------------------------
|
|
# Copyright (c) 2015-2023, PyInstaller Development Team.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
#
|
|
# The full license is in the file COPYING.txt, distributed with this software.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
def _pyi_rthook():
|
|
import os
|
|
import sys
|
|
|
|
os.environ['GIO_MODULE_DIR'] = os.path.join(sys._MEIPASS, 'gio_modules')
|
|
|
|
|
|
_pyi_rthook()
|
|
del _pyi_rthook
|