Fix loading of ZLibrary resources

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/1/head
Michele Calgaro 4 months ago
parent 35b683a741
commit eccae8f565
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -41,6 +41,24 @@ include( TDESetupPaths )
tde_setup_paths( ) tde_setup_paths( )
##### zlibrary-tqt paths
_tde_internal_setup_path(
ZL_SHARE_INSTALL_PREFIX "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/share/zlibrary-tqt"
"Base directory for zlibrary-tqt files which go to share"
)
_tde_internal_setup_path(
ZL_INCLUDE_INSTALL_DIR "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/include/zlibrary-tqt"
"The subdirectory to the header prefix"
)
_tde_internal_setup_path(
ZL_LIB_INSTALL_DIR "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/lib${LIB_SUFFIX}"
"Base directory for zlibrary-tqt lib files"
)
##### optional stuff ##### optional stuff
option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) option( WITH_ALL_OPTIONS "Enable all optional support" OFF )

@ -1,22 +1,2 @@
##### zlibrary-tqt install path
_tde_internal_setup_path(
ZL_SHARE_INSTALL_PREFIX "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/share/zlibrary-tqt"
"Base directory for zlibrary-tqt files which go to share"
)
_tde_internal_setup_path(
ZL_INCLUDE_INSTALL_DIR "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/include/zlibrary-tqt"
"The subdirectory to the header prefix"
)
_tde_internal_setup_path(
ZL_LIB_INSTALL_DIR "${CMAKE_ZLIBRARY_INSTALL_PREFIX}/lib${LIB_SUFFIX}"
"Base directory for zlibrary-tqt lib files"
)
##### subfolders
add_subdirectory( core ) add_subdirectory( core )
add_subdirectory( text ) add_subdirectory( text )

@ -37,8 +37,8 @@ public:
static std::string Country(); static std::string Country();
static const std::string BaseDirectory; static const std::string BaseDirectory;
static const std::string &ZLibraryDirectory();
static const std::string &ZLibraryDirectory();
static const std::string &ImageDirectory(); static const std::string &ImageDirectory();
static const std::string &ApplicationName(); static const std::string &ApplicationName();
static const std::string &ApplicationImageDirectory(); static const std::string &ApplicationImageDirectory();

@ -73,7 +73,7 @@ void ZLibrary::parseArguments(int &argc, char **&argv) {
argc -= 2; argc -= 2;
argv += 2; argv += 2;
} }
ourZLibraryDirectory = BaseDirectory + FileNameDelimiter + "zlibrary"; ourZLibraryDirectory = std::string(ZLBASEDIR);
} }
void ZLibrary::shutdown() { void ZLibrary::shutdown() {

Loading…
Cancel
Save