Modifying prefix

This commit is contained in:
sergiotarxz 2022-05-11 18:20:56 +02:00
parent 667b6a7f40
commit 70d108286a
39 changed files with 441 additions and 426 deletions

View File

@ -249,13 +249,13 @@ request with new package. Pay attention to things listed below.
These paths do not exist in Termux and have been replaced by prefixed These paths do not exist in Termux and have been replaced by prefixed
equivalents. Termux installation prefix is equivalents. Termux installation prefix is
``` ```
/data/data/com.termux/files/usr /data/data/me.sergiotarxz.openmg.x11/files/usr
``` ```
and can be considered as virtual rootfs. and can be considered as virtual rootfs.
Home directory is stored outside of prefix: Home directory is stored outside of prefix:
``` ```
/data/data/com.termux/files/home /data/data/me.sergiotarxz.openmg.x11/files/home
``` ```
Don't hardcode home and prefix, use shortcuts `@TERMUX_HOME@` and Don't hardcode home and prefix, use shortcuts `@TERMUX_HOME@` and

View File

@ -5,6 +5,6 @@ diff -uNr apk-tools-2.10.3/src/termux_prefix.h apk-tools-2.10.3.mod/src/termux_p
+#ifndef __TERMUX_PREFIX_H +#ifndef __TERMUX_PREFIX_H
+#define __TERMUX_PREFIX_H +#define __TERMUX_PREFIX_H
+ +
+#define TERMUX_PREFIX_RELATIVE "data/data/com.termux/files/usr/" +#define TERMUX_PREFIX_RELATIVE "data/data/me.sergiotarxz.openmg.x11/files/usr/"
+ +
+#endif +#endif

View File

@ -53,7 +53,7 @@ termux_step_create_debscripts() {
echo "if [ ! -e $TERMUX_ANDROID_HOME/.alpine-smime/.pwd/MasterPassword.crt ] && [ ! -e $HOME/.alpine-smime/.pwd/MasterPassword.key ]; then" >> postinst echo "if [ ! -e $TERMUX_ANDROID_HOME/.alpine-smime/.pwd/MasterPassword.crt ] && [ ! -e $HOME/.alpine-smime/.pwd/MasterPassword.key ]; then" >> postinst
echo "echo 'warning making a passwordless masterpasword file'" >> postinst echo "echo 'warning making a passwordless masterpasword file'" >> postinst
echo "mkdir -p \$HOME/.alpine-smime/public \$HOME/.alpine-smime/.pwd \$HOME/.alpine-smime/private \$HOME/.alpine-smime/ca" >> postinst echo "mkdir -p \$HOME/.alpine-smime/public \$HOME/.alpine-smime/.pwd \$HOME/.alpine-smime/private \$HOME/.alpine-smime/ca" >> postinst
echo "openssl req -x509 -newkey rsa:2048 -keyout \$HOME/.alpine-smime/.pwd/MasterPassword.key -out \$HOME/.alpine-smime/.pwd/MasterPassword.crt -days 10000 -nodes -subj '/C=US/ST=dont/L=use/O=this Name/OU=for/CN=anything.com.termux'" >> postinst echo "openssl req -x509 -newkey rsa:2048 -keyout \$HOME/.alpine-smime/.pwd/MasterPassword.key -out \$HOME/.alpine-smime/.pwd/MasterPassword.crt -days 10000 -nodes -subj '/C=US/ST=dont/L=use/O=this Name/OU=for/CN=anything.me.sergiotarxz.openmg.x11'" >> postinst
echo "touch \$HOME/.pine-passfile" >> postinst echo "touch \$HOME/.pine-passfile" >> postinst
echo "fi" >> postinst echo "fi" >> postinst
} }

View File

@ -1,9 +1,9 @@
Handle EROFS. This is since path_remove_tree() will be called with Handle EROFS. This is since path_remove_tree() will be called with
'/data.dpkg-tmp' '/data.dpkg-tmp'
'/data/data.dpkg-tmp' '/data/data.dpkg-tmp'
'/data/data/com.termux.dpkg-tmp' '/data/data/me.sergiotarxz.openmg.x11.dpkg-tmp'
'/data/data/com.termux/files.dpkg-tmp' '/data/data/me.sergiotarxz.openmg.x11/files.dpkg-tmp'
'/data/data/com.termux/files/usr.dpkg-tmp' '/data/data/me.sergiotarxz.openmg.x11/files/usr.dpkg-tmp'
and the first call will get a EROFS, read-only file system error. and the first call will get a EROFS, read-only file system error.
diff -u -r ../dpkg-1.18.2/lib/dpkg/path-remove.c ./lib/dpkg/path-remove.c diff -u -r ../dpkg-1.18.2/lib/dpkg/path-remove.c ./lib/dpkg/path-remove.c

View File

@ -8,7 +8,7 @@
- uint32_t dpkg = getNumStrings("/var/lib/dpkg/status", "Status: "); - uint32_t dpkg = getNumStrings("/var/lib/dpkg/status", "Status: ");
- -
- #if __ANDROID__ - #if __ANDROID__
- dpkg += getNumStrings("/data/data/com.termux/files/usr/var/lib/dpkg/status", "Status: "); - dpkg += getNumStrings("/data/data/me.sergiotarxz.openmg.x11/files/usr/var/lib/dpkg/status", "Status: ");
- #endif - #endif
+ uint32_t pacman = getNumElements("@TERMUX_PREFIX@/var/lib/pacman/local", DT_DIR); + uint32_t pacman = getNumElements("@TERMUX_PREFIX@/var/lib/pacman/local", DT_DIR);
+ uint32_t dpkg = getNumStrings("@TERMUX_PREFIX@/var/lib/dpkg/status", "Status: "); + uint32_t dpkg = getNumStrings("@TERMUX_PREFIX@/var/lib/dpkg/status", "Status: ");

View File

@ -118,7 +118,7 @@ static int do_wordexp(const char *s, wordexp_t *we, int flags)
if (!pid) { if (!pid) {
if (p[1] == 1) fcntl(1, F_SETFD, 0); if (p[1] == 1) fcntl(1, F_SETFD, 0);
else dup2(p[1], 1); else dup2(p[1], 1);
execl("/data/data/com.termux/files/usr/bin/sh", "sh", "-c", execl("/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/sh", "sh", "-c",
"eval \"printf %s\\\\\\\\0 x $1 $2\"", "eval \"printf %s\\\\\\\\0 x $1 $2\"",
"sh", s, redir, (char *)0); "sh", s, redir, (char *)0);
_exit(1); _exit(1);

View File

@ -40,7 +40,7 @@ char H5libhdf5_settings[]=
" Host system: Linux-4.4.111-SoLdieR9312\n" " Host system: Linux-4.4.111-SoLdieR9312\n"
" Uname information: Linux\n" " Uname information: Linux\n"
" Byte sex: little-endian\n" " Byte sex: little-endian\n"
" Installation point: /data/data/com.termux/files/usr\n" " Installation point: /data/data/me.sergiotarxz.openmg.x11/files/usr\n"
"\n" "\n"
"Compiling Options:\n" "Compiling Options:\n"
"------------------\n" "------------------\n"
@ -58,13 +58,13 @@ char H5libhdf5_settings[]=
" H5_LDFLAGS: \n" " H5_LDFLAGS: \n"
" AM_LDFLAGS: \n" " AM_LDFLAGS: \n"
" Extra libraries: m;dl\n" " Extra libraries: m;dl\n"
" Archiver: /data/data/com.termux/files/usr/bin/ar\n" " Archiver: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar\n"
" Ranlib: /data/data/com.termux/files/usr/bin/ranlib\n" " Ranlib: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib\n"
"\n" "\n"
"Languages:\n" "Languages:\n"
"----------\n" "----------\n"
" C: yes\n" " C: yes\n"
" C Compiler: /data/data/com.termux/files/usr/bin/cc 8.0.0\n" " C Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc 8.0.0\n"
" CPPFLAGS: \n" " CPPFLAGS: \n"
" H5_CPPFLAGS: \n" " H5_CPPFLAGS: \n"
" AM_CPPFLAGS: \n" " AM_CPPFLAGS: \n"
@ -83,7 +83,7 @@ char H5libhdf5_settings[]=
" Static Fortran Library: YES\n" " Static Fortran Library: YES\n"
"\n" "\n"
" C++: ON\n" " C++: ON\n"
" C++ Compiler: /data/data/com.termux/files/usr/bin/c++ 8.0.0\n" " C++ Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++ 8.0.0\n"
" C++ Flags: \n" " C++ Flags: \n"
" H5 C++ Flags: \n" " H5 C++ Flags: \n"
" AM C++ Flags: \n" " AM C++ Flags: \n"

View File

@ -1,6 +1,6 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /data/data/com.termux/files/home/hdf5-1.10.1/as # For build in directory: /data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
# It was generated by CMake: /data/data/com.termux/files/usr/bin/cmake # It was generated by CMake: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
# You can edit this file to change values found and used by cmake. # You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor. # If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor. # If you do want to change a value, simply edit, save, and exit the editor.
@ -33,17 +33,17 @@ BUILD_USER_DEFINED_LIBS:BOOL=OFF
BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND
//Path to a program. //Path to a program.
CMAKE_AR:FILEPATH=/data/data/com.termux/files/usr/bin/ar CMAKE_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar
//Single Directory for all static libraries. //Single Directory for all static libraries.
CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Choose the type of build, options are: None Debug Release RelWithDebInfo //Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ... // MinSizeRel ...
CMAKE_BUILD_TYPE:STRING= CMAKE_BUILD_TYPE:STRING=
//CXX compiler //CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/c++ CMAKE_CXX_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++
//LLVM archiver //LLVM archiver
CMAKE_CXX_COMPILER_AR:FILEPATH=CMAKE_CXX_COMPILER_AR-NOTFOUND CMAKE_CXX_COMPILER_AR:FILEPATH=CMAKE_CXX_COMPILER_AR-NOTFOUND
@ -67,7 +67,7 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler //C compiler
CMAKE_C_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/cc CMAKE_C_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc
//LLVM archiver //LLVM archiver
CMAKE_C_COMPILER_AR:FILEPATH=CMAKE_C_COMPILER_AR-NOTFOUND CMAKE_C_COMPILER_AR:FILEPATH=CMAKE_C_COMPILER_AR-NOTFOUND
@ -109,19 +109,19 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Single Directory for all fortran modules. //Single Directory for all fortran modules.
CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Install path prefix, prepended onto install directories. //Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local/HDF_Group/HDF5/1.10.1 CMAKE_INSTALL_PREFIX:PATH=/usr/local/HDF_Group/HDF5/1.10.1
//Single Directory for all Libraries //Single Directory for all Libraries
CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Path to a program. //Path to a program.
CMAKE_LINKER:FILEPATH=/data/data/com.termux/files/usr/bin/ld CMAKE_LINKER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ld
//Program used to build from build.ninja files. //Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/com.termux/files/usr/bin/ninja CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ninja
//Flags used by the linker during the creation of modules during //Flags used by the linker during the creation of modules during
// all build types. // all build types.
@ -144,22 +144,22 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_NM:FILEPATH=/data/data/com.termux/files/usr/bin/nm CMAKE_NM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/nm
//Path to a program. //Path to a program.
CMAKE_OBJCOPY:FILEPATH=/data/data/com.termux/files/usr/bin/objcopy CMAKE_OBJCOPY:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objcopy
//Path to a program. //Path to a program.
CMAKE_OBJDUMP:FILEPATH=/data/data/com.termux/files/usr/bin/objdump CMAKE_OBJDUMP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objdump
//Value Computed by CMake //Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=HDF5 CMAKE_PROJECT_NAME:STATIC=HDF5
//Path to a program. //Path to a program.
CMAKE_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/ranlib CMAKE_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib
//Single Directory for all Executables. //Single Directory for all Executables.
CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Flags used by the linker during the creation of shared libraries //Flags used by the linker during the creation of shared libraries
// during all build types. // during all build types.
@ -209,7 +209,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_STRIP:FILEPATH=/data/data/com.termux/files/usr/bin/strip CMAKE_STRIP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/strip
//If this value is on, makefiles will be generated without the //If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console // .SILENT directive, and all commands will be echoed to the console
@ -261,13 +261,13 @@ CVS_UPDATE_OPTIONS:STRING=-d -A -P
DART_TESTING_TIMEOUT:STRING=600 DART_TESTING_TIMEOUT:STRING=600
//Path to a program. //Path to a program.
GITCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/git GITCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/git
//Allow External Library Building (NO SVN TGZ) //Allow External Library Building (NO SVN TGZ)
HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO
//Value Computed by CMake //Value Computed by CMake
HDF5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as HDF5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Build HDF5 C++ Library //Build HDF5 C++ Library
HDF5_BUILD_CPP_LIB:BOOL=ON HDF5_BUILD_CPP_LIB:BOOL=ON
@ -288,28 +288,28 @@ HDF5_BUILD_JAVA:BOOL=OFF
HDF5_BUILD_TOOLS:BOOL=ON HDF5_BUILD_TOOLS:BOOL=ON
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++ HDF5_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/examples HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/examples HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++ HDF5_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/src HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/src HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/test HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/test HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/test
//Disable compiler warnings //Disable compiler warnings
HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF
@ -372,79 +372,79 @@ HDF5_ENABLE_USING_MEMCHECKER:BOOL=OFF
HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/examples HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/examples HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/examples
//Rebuild Generated Files //Rebuild Generated Files
HDF5_GENERATE_HEADERS:BOOL=OFF HDF5_GENERATE_HEADERS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl HDF5_HL_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++ HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/examples HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/examples HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++ HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/src HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/src HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/test HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/test HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/examples HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/examples HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl HDF5_HL_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/src HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/src HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/test HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/test HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools
//Indicate that internal memory allocation sanity checks are enabled //Indicate that internal memory allocation sanity checks are enabled
HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF
@ -462,175 +462,175 @@ HDF5_PACKAGE_EXTLIBS:BOOL=OFF
HDF5_PACK_EXAMPLES:BOOL=OFF HDF5_PACK_EXAMPLES:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1 HDF5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/src HDF5_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/src
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/src HDF5_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/src
//Whether to perform strict file format checks //Whether to perform strict file format checks
HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/test HDF5_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/test HDF5_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/test
//Execute tests with different VFDs //Execute tests with different VFDs
HDF5_TEST_VFD:BOOL=OFF HDF5_TEST_VFD:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/lib HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/lib HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/misc HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/misc HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/misc HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/misc HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/perform HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/perform HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test
//Use the HDF5 1.6.x API by default //Use the HDF5 1.6.x API by default
HDF5_USE_16_API_DEFAULT:BOOL=OFF HDF5_USE_16_API_DEFAULT:BOOL=OFF
@ -657,10 +657,10 @@ HDF_TEST_EXPRESS:BOOL=OFF
HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND
//Command to build the project //Command to build the project
MAKECOMMAND:STRING=/data/data/com.termux/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" MAKECOMMAND:STRING=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
//Path to the memory checking command, used for memory error detection. //Path to the memory checking command, used for memory error detection.
MEMORYCHECK_COMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/valgrind MEMORYCHECK_COMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/valgrind
//File that contains suppressions for the memory checker //File that contains suppressions for the memory checker
MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH= MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=
@ -670,7 +670,7 @@ P4COMMAND:FILEPATH=P4COMMAND-NOTFOUND
//Path to scp command, used by CTest for submitting results to //Path to scp command, used by CTest for submitting results to
// a Dart server // a Dart server
SCPCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/scp SCPCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/scp
//Name of the computer/site where compile is being run //Name of the computer/site where compile is being run
SITE:STRING=localhost SITE:STRING=localhost
@ -770,7 +770,7 @@ CLOCK_GETTIME_IN_LIBRT:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR //ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1 CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created //This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1/as CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Major version of cmake used to create the current loaded cache //Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache //Minor version of cmake used to create the current loaded cache
@ -778,13 +778,13 @@ CMAKE_CACHE_MINOR_VERSION:INTERNAL=11
//Patch version of cmake used to create the current loaded cache //Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable. //Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cmake CMAKE_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
//Path to cpack program executable. //Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cpack CMAKE_CPACK_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cpack
//ADVANCED property for variable: CMAKE_CTEST_COMMAND //ADVANCED property for variable: CMAKE_CTEST_COMMAND
CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1 CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
//Path to ctest program executable. //Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/ctest CMAKE_CTEST_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER //ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
@ -843,7 +843,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this //Source directory with the top level CMakeLists.txt file for this
// project // project
CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1 CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Install .so files without execute permission. //Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_LINKER //ADVANCED property for variable: CMAKE_LINKER
@ -875,7 +875,7 @@ CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB //ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1 CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation. //Path to CMake installation.
CMAKE_ROOT:INTERNAL=/data/data/com.termux/files/usr/share/cmake-3.11 CMAKE_ROOT:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/share/cmake-3.11
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@ -907,7 +907,7 @@ CMAKE_STD_NAMESPACE:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_STRIP //ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command //uname command
CMAKE_UNAME:INTERNAL=/data/data/com.termux/files/usr/bin/uname CMAKE_UNAME:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: COVERAGE_COMMAND //ADVANCED property for variable: COVERAGE_COMMAND

View File

@ -40,7 +40,7 @@ char H5libhdf5_settings[]=
" Host system: Linux-3.4.113-g93bd523\n" " Host system: Linux-3.4.113-g93bd523\n"
" Uname information: Linux\n" " Uname information: Linux\n"
" Byte sex: little-endian\n" " Byte sex: little-endian\n"
" Installation point: /data/data/com.termux/files/usr\n" " Installation point: /data/data/me.sergiotarxz.openmg.x11/files/usr\n"
"\n" "\n"
"Compiling Options:\n" "Compiling Options:\n"
"------------------\n" "------------------\n"
@ -58,13 +58,13 @@ char H5libhdf5_settings[]=
" H5_LDFLAGS: \n" " H5_LDFLAGS: \n"
" AM_LDFLAGS: \n" " AM_LDFLAGS: \n"
" Extra libraries: m;dl\n" " Extra libraries: m;dl\n"
" Archiver: /data/data/com.termux/files/usr/bin/ar\n" " Archiver: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar\n"
" Ranlib: /data/data/com.termux/files/usr/bin/ranlib\n" " Ranlib: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib\n"
"\n" "\n"
"Languages:\n" "Languages:\n"
"----------\n" "----------\n"
" C: yes\n" " C: yes\n"
" C Compiler: /data/data/com.termux/files/usr/bin/cc 8.0.0\n" " C Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc 8.0.0\n"
" CPPFLAGS: \n" " CPPFLAGS: \n"
" H5_CPPFLAGS: \n" " H5_CPPFLAGS: \n"
" AM_CPPFLAGS: \n" " AM_CPPFLAGS: \n"
@ -83,7 +83,7 @@ char H5libhdf5_settings[]=
" Static Fortran Library: YES\n" " Static Fortran Library: YES\n"
"\n" "\n"
" C++: ON\n" " C++: ON\n"
" C++ Compiler: /data/data/com.termux/files/usr/bin/c++ 8.0.0\n" " C++ Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++ 8.0.0\n"
" C++ Flags: \n" " C++ Flags: \n"
" H5 C++ Flags: \n" " H5 C++ Flags: \n"
" AM C++ Flags: \n" " AM C++ Flags: \n"

View File

@ -1,6 +1,6 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /data/data/com.termux/files/home/hdf5-1.10.1/as # For build in directory: /data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
# It was generated by CMake: /data/data/com.termux/files/usr/bin/cmake # It was generated by CMake: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
# You can edit this file to change values found and used by cmake. # You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor. # If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor. # If you do want to change a value, simply edit, save, and exit the editor.
@ -33,23 +33,23 @@ BUILD_USER_DEFINED_LIBS:BOOL=OFF
BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND
//Path to a program. //Path to a program.
CMAKE_AR:FILEPATH=/data/data/com.termux/files/usr/bin/ar CMAKE_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar
//Single Directory for all static libraries. //Single Directory for all static libraries.
CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Choose the type of build, options are: None Debug Release RelWithDebInfo //Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ... // MinSizeRel ...
CMAKE_BUILD_TYPE:STRING= CMAKE_BUILD_TYPE:STRING=
//CXX compiler //CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/c++ CMAKE_CXX_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++
//LLVM archiver //LLVM archiver
CMAKE_CXX_COMPILER_AR:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ar CMAKE_CXX_COMPILER_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ar
//Generate index for LLVM archive //Generate index for LLVM archive
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ranlib CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ranlib
//Flags used by the CXX compiler during all build types. //Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING= CMAKE_CXX_FLAGS:STRING=
@ -67,13 +67,13 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler //C compiler
CMAKE_C_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/cc CMAKE_C_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc
//LLVM archiver //LLVM archiver
CMAKE_C_COMPILER_AR:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ar CMAKE_C_COMPILER_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ar
//Generate index for LLVM archive //Generate index for LLVM archive
CMAKE_C_COMPILER_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ranlib CMAKE_C_COMPILER_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ranlib
//Flags used by the C compiler during all build types. //Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING= CMAKE_C_FLAGS:STRING=
@ -109,19 +109,19 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Single Directory for all fortran modules. //Single Directory for all fortran modules.
CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Install path prefix, prepended onto install directories. //Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/data/data/com.termux/files/usr CMAKE_INSTALL_PREFIX:PATH=/data/data/me.sergiotarxz.openmg.x11/files/usr
//Single Directory for all Libraries //Single Directory for all Libraries
CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Path to a program. //Path to a program.
CMAKE_LINKER:FILEPATH=/data/data/com.termux/files/usr/bin/ld CMAKE_LINKER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ld
//Program used to build from build.ninja files. //Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/com.termux/files/usr/bin/ninja CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ninja
//Flags used by the linker during the creation of modules during //Flags used by the linker during the creation of modules during
// all build types. // all build types.
@ -144,22 +144,22 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_NM:FILEPATH=/data/data/com.termux/files/usr/bin/nm CMAKE_NM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/nm
//Path to a program. //Path to a program.
CMAKE_OBJCOPY:FILEPATH=/data/data/com.termux/files/usr/bin/objcopy CMAKE_OBJCOPY:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objcopy
//Path to a program. //Path to a program.
CMAKE_OBJDUMP:FILEPATH=/data/data/com.termux/files/usr/bin/objdump CMAKE_OBJDUMP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objdump
//Value Computed by CMake //Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=HDF5 CMAKE_PROJECT_NAME:STATIC=HDF5
//Path to a program. //Path to a program.
CMAKE_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/ranlib CMAKE_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib
//Single Directory for all Executables. //Single Directory for all Executables.
CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Flags used by the linker during the creation of shared libraries //Flags used by the linker during the creation of shared libraries
// during all build types. // during all build types.
@ -209,7 +209,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_STRIP:FILEPATH=/data/data/com.termux/files/usr/bin/strip CMAKE_STRIP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/strip
//If this value is on, makefiles will be generated without the //If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console // .SILENT directive, and all commands will be echoed to the console
@ -219,7 +219,7 @@ CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Path to the coverage program that CTest uses for performing coverage //Path to the coverage program that CTest uses for performing coverage
// inspection // inspection
COVERAGE_COMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/gcov COVERAGE_COMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/gcov
//Extra command line flags to pass to the coverage tool //Extra command line flags to pass to the coverage tool
COVERAGE_EXTRA_FLAGS:STRING=-l COVERAGE_EXTRA_FLAGS:STRING=-l
@ -261,13 +261,13 @@ CVS_UPDATE_OPTIONS:STRING=-d -A -P
DART_TESTING_TIMEOUT:STRING=600 DART_TESTING_TIMEOUT:STRING=600
//Path to a program. //Path to a program.
GITCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/git GITCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/git
//Allow External Library Building (NO SVN TGZ) //Allow External Library Building (NO SVN TGZ)
HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO
//Value Computed by CMake //Value Computed by CMake
HDF5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as HDF5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Build HDF5 C++ Library //Build HDF5 C++ Library
HDF5_BUILD_CPP_LIB:BOOL=ON HDF5_BUILD_CPP_LIB:BOOL=ON
@ -288,28 +288,28 @@ HDF5_BUILD_JAVA:BOOL=OFF
HDF5_BUILD_TOOLS:BOOL=ON HDF5_BUILD_TOOLS:BOOL=ON
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++ HDF5_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/examples HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/examples HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++ HDF5_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/src HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/src HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/test HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/test HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/test
//Disable compiler warnings //Disable compiler warnings
HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF
@ -372,79 +372,79 @@ HDF5_ENABLE_USING_MEMCHECKER:BOOL=OFF
HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/examples HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/examples HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/examples
//Rebuild Generated Files //Rebuild Generated Files
HDF5_GENERATE_HEADERS:BOOL=OFF HDF5_GENERATE_HEADERS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl HDF5_HL_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++ HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/examples HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/examples HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++ HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/src HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/src HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/test HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/test HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/examples HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/examples HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl HDF5_HL_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/src HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/src HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/test HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/test HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools
//Indicate that internal memory allocation sanity checks are enabled //Indicate that internal memory allocation sanity checks are enabled
HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF
@ -462,175 +462,175 @@ HDF5_PACKAGE_EXTLIBS:BOOL=OFF
HDF5_PACK_EXAMPLES:BOOL=OFF HDF5_PACK_EXAMPLES:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1 HDF5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/src HDF5_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/src
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/src HDF5_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/src
//Whether to perform strict file format checks //Whether to perform strict file format checks
HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/test HDF5_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/test HDF5_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/test
//Execute tests with different VFDs //Execute tests with different VFDs
HDF5_TEST_VFD:BOOL=OFF HDF5_TEST_VFD:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/lib HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/lib HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/misc HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/misc HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/misc HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/misc HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/perform HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/perform HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test
//Use the HDF5 1.6.x API by default //Use the HDF5 1.6.x API by default
HDF5_USE_16_API_DEFAULT:BOOL=OFF HDF5_USE_16_API_DEFAULT:BOOL=OFF
@ -657,7 +657,7 @@ HDF_TEST_EXPRESS:BOOL=OFF
HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND
//Command to build the project //Command to build the project
MAKECOMMAND:STRING=/data/data/com.termux/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" MAKECOMMAND:STRING=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
//Path to the memory checking command, used for memory error detection. //Path to the memory checking command, used for memory error detection.
MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND
@ -670,7 +670,7 @@ P4COMMAND:FILEPATH=P4COMMAND-NOTFOUND
//Path to scp command, used by CTest for submitting results to //Path to scp command, used by CTest for submitting results to
// a Dart server // a Dart server
SCPCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/scp SCPCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/scp
//Name of the computer/site where compile is being run //Name of the computer/site where compile is being run
SITE:STRING=localhost SITE:STRING=localhost
@ -770,7 +770,7 @@ CLOCK_GETTIME_IN_LIBRT:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR //ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1 CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created //This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1/as CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Major version of cmake used to create the current loaded cache //Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache //Minor version of cmake used to create the current loaded cache
@ -778,13 +778,13 @@ CMAKE_CACHE_MINOR_VERSION:INTERNAL=11
//Patch version of cmake used to create the current loaded cache //Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable. //Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cmake CMAKE_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
//Path to cpack program executable. //Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cpack CMAKE_CPACK_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cpack
//ADVANCED property for variable: CMAKE_CTEST_COMMAND //ADVANCED property for variable: CMAKE_CTEST_COMMAND
CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1 CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
//Path to ctest program executable. //Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/ctest CMAKE_CTEST_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER //ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
@ -843,7 +843,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this //Source directory with the top level CMakeLists.txt file for this
// project // project
CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1 CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Install .so files without execute permission. //Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_LINKER //ADVANCED property for variable: CMAKE_LINKER
@ -875,7 +875,7 @@ CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB //ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1 CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation. //Path to CMake installation.
CMAKE_ROOT:INTERNAL=/data/data/com.termux/files/usr/share/cmake-3.11 CMAKE_ROOT:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/share/cmake-3.11
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@ -907,7 +907,7 @@ CMAKE_STD_NAMESPACE:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_STRIP //ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command //uname command
CMAKE_UNAME:INTERNAL=/data/data/com.termux/files/usr/bin/uname CMAKE_UNAME:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: COVERAGE_COMMAND //ADVANCED property for variable: COVERAGE_COMMAND

View File

@ -40,7 +40,7 @@ char H5libhdf5_settings[]=
" Host system: Linux-4.9.95-android-x86-gd25a822a6c78\n" " Host system: Linux-4.9.95-android-x86-gd25a822a6c78\n"
" Uname information: Linux\n" " Uname information: Linux\n"
" Byte sex: little-endian\n" " Byte sex: little-endian\n"
" Installation point: /data/data/com.termux/files/usr\n" " Installation point: /data/data/me.sergiotarxz.openmg.x11/files/usr\n"
"\n" "\n"
"Compiling Options:\n" "Compiling Options:\n"
"------------------\n" "------------------\n"
@ -58,13 +58,13 @@ char H5libhdf5_settings[]=
" H5_LDFLAGS: \n" " H5_LDFLAGS: \n"
" AM_LDFLAGS: \n" " AM_LDFLAGS: \n"
" Extra libraries: m;dl\n" " Extra libraries: m;dl\n"
" Archiver: /data/data/com.termux/files/usr/bin/ar\n" " Archiver: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar\n"
" Ranlib: /data/data/com.termux/files/usr/bin/ranlib\n" " Ranlib: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib\n"
"\n" "\n"
"Languages:\n" "Languages:\n"
"----------\n" "----------\n"
" C: yes\n" " C: yes\n"
" C Compiler: /data/data/com.termux/files/usr/bin/cc 7.0.0\n" " C Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc 7.0.0\n"
" CPPFLAGS: \n" " CPPFLAGS: \n"
" H5_CPPFLAGS: \n" " H5_CPPFLAGS: \n"
" AM_CPPFLAGS: \n" " AM_CPPFLAGS: \n"
@ -83,7 +83,7 @@ char H5libhdf5_settings[]=
" Static Fortran Library: YES\n" " Static Fortran Library: YES\n"
"\n" "\n"
" C++: ON\n" " C++: ON\n"
" C++ Compiler: /data/data/com.termux/files/usr/bin/c++ 7.0.0\n" " C++ Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++ 7.0.0\n"
" C++ Flags: \n" " C++ Flags: \n"
" H5 C++ Flags: \n" " H5 C++ Flags: \n"
" AM C++ Flags: \n" " AM C++ Flags: \n"

View File

@ -1,6 +1,6 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /data/data/com.termux/files/home/hdf5-1.10.1/as # For build in directory: /data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
# It was generated by CMake: /data/data/com.termux/files/usr/bin/cmake # It was generated by CMake: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
# You can edit this file to change values found and used by cmake. # You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor. # If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor. # If you do want to change a value, simply edit, save, and exit the editor.
@ -33,23 +33,23 @@ BUILD_USER_DEFINED_LIBS:BOOL=OFF
BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND
//Path to a program. //Path to a program.
CMAKE_AR:FILEPATH=/data/data/com.termux/files/usr/bin/ar CMAKE_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar
//Single Directory for all static libraries. //Single Directory for all static libraries.
CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Choose the type of build, options are: None Debug Release RelWithDebInfo //Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ... // MinSizeRel ...
CMAKE_BUILD_TYPE:STRING= CMAKE_BUILD_TYPE:STRING=
//CXX compiler //CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/c++ CMAKE_CXX_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++
//LLVM archiver //LLVM archiver
CMAKE_CXX_COMPILER_AR:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ar CMAKE_CXX_COMPILER_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ar
//Generate index for LLVM archive //Generate index for LLVM archive
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ranlib CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ranlib
//Flags used by the CXX compiler during all build types. //Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING= CMAKE_CXX_FLAGS:STRING=
@ -67,13 +67,13 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler //C compiler
CMAKE_C_COMPILER:FILEPATH=/data/data/com.termux/files/usr/bin/cc CMAKE_C_COMPILER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc
//LLVM archiver //LLVM archiver
CMAKE_C_COMPILER_AR:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ar CMAKE_C_COMPILER_AR:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ar
//Generate index for LLVM archive //Generate index for LLVM archive
CMAKE_C_COMPILER_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/llvm-ranlib CMAKE_C_COMPILER_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/llvm-ranlib
//Flags used by the C compiler during all build types. //Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING= CMAKE_C_FLAGS:STRING=
@ -109,19 +109,19 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Single Directory for all fortran modules. //Single Directory for all fortran modules.
CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_Fortran_MODULE_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Install path prefix, prepended onto install directories. //Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/data/data/com.termux/files/usr CMAKE_INSTALL_PREFIX:PATH=/data/data/me.sergiotarxz.openmg.x11/files/usr
//Single Directory for all Libraries //Single Directory for all Libraries
CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Path to a program. //Path to a program.
CMAKE_LINKER:FILEPATH=/data/data/com.termux/files/usr/bin/ld CMAKE_LINKER:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ld
//Program used to build from build.ninja files. //Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/com.termux/files/usr/bin/ninja CMAKE_MAKE_PROGRAM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ninja
//Flags used by the linker during the creation of modules during //Flags used by the linker during the creation of modules during
// all build types. // all build types.
@ -144,22 +144,22 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_NM:FILEPATH=/data/data/com.termux/files/usr/bin/nm CMAKE_NM:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/nm
//Path to a program. //Path to a program.
CMAKE_OBJCOPY:FILEPATH=/data/data/com.termux/files/usr/bin/objcopy CMAKE_OBJCOPY:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objcopy
//Path to a program. //Path to a program.
CMAKE_OBJDUMP:FILEPATH=/data/data/com.termux/files/usr/bin/objdump CMAKE_OBJDUMP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/objdump
//Value Computed by CMake //Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=HDF5 CMAKE_PROJECT_NAME:STATIC=HDF5
//Path to a program. //Path to a program.
CMAKE_RANLIB:FILEPATH=/data/data/com.termux/files/usr/bin/ranlib CMAKE_RANLIB:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib
//Single Directory for all Executables. //Single Directory for all Executables.
CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/com.termux/files/home/hdf5-1.10.1/as/bin CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/bin
//Flags used by the linker during the creation of shared libraries //Flags used by the linker during the creation of shared libraries
// during all build types. // during all build types.
@ -209,7 +209,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program. //Path to a program.
CMAKE_STRIP:FILEPATH=/data/data/com.termux/files/usr/bin/strip CMAKE_STRIP:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/strip
//If this value is on, makefiles will be generated without the //If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console // .SILENT directive, and all commands will be echoed to the console
@ -219,7 +219,7 @@ CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Path to the coverage program that CTest uses for performing coverage //Path to the coverage program that CTest uses for performing coverage
// inspection // inspection
COVERAGE_COMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/gcov COVERAGE_COMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/gcov
//Extra command line flags to pass to the coverage tool //Extra command line flags to pass to the coverage tool
COVERAGE_EXTRA_FLAGS:STRING=-l COVERAGE_EXTRA_FLAGS:STRING=-l
@ -261,13 +261,13 @@ CVS_UPDATE_OPTIONS:STRING=-d -A -P
DART_TESTING_TIMEOUT:STRING=600 DART_TESTING_TIMEOUT:STRING=600
//Path to a program. //Path to a program.
GITCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/git GITCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/git
//Allow External Library Building (NO SVN TGZ) //Allow External Library Building (NO SVN TGZ)
HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO HDF5_ALLOW_EXTERNAL_SUPPORT:STRING=NO
//Value Computed by CMake //Value Computed by CMake
HDF5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as HDF5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Build HDF5 C++ Library //Build HDF5 C++ Library
HDF5_BUILD_CPP_LIB:BOOL=ON HDF5_BUILD_CPP_LIB:BOOL=ON
@ -288,28 +288,28 @@ HDF5_BUILD_JAVA:BOOL=OFF
HDF5_BUILD_TOOLS:BOOL=ON HDF5_BUILD_TOOLS:BOOL=ON
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++ HDF5_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/examples HDF5_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/examples HDF5_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++ HDF5_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/src HDF5_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/src HDF5_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/c++/test HDF5_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/c++/test HDF5_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/c++/test
//Disable compiler warnings //Disable compiler warnings
HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF HDF5_DISABLE_COMPILER_WARNINGS:BOOL=OFF
@ -372,79 +372,79 @@ HDF5_ENABLE_USING_MEMCHECKER:BOOL=OFF
HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF HDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/examples HDF5_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/examples HDF5_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/examples
//Rebuild Generated Files //Rebuild Generated Files
HDF5_GENERATE_HEADERS:BOOL=OFF HDF5_GENERATE_HEADERS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl HDF5_HL_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++ HDF5_HL_CPP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/examples HDF5_HL_CPP_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/examples HDF5_HL_CPP_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++ HDF5_HL_CPP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/src HDF5_HL_CPP_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/src HDF5_HL_CPP_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/c++/test HDF5_HL_CPP_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/c++/test HDF5_HL_CPP_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/c++/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/examples HDF5_HL_EXAMPLES_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/examples HDF5_HL_EXAMPLES_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/examples
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl HDF5_HL_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/src HDF5_HL_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/src HDF5_HL_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/src
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/test HDF5_HL_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/test HDF5_HL_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/test
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools HDF5_HL_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/gif2h5 HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/gif2h5
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools/h5watch HDF5_HL_TOOLS_H5WATCH_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools/h5watch
//Value Computed by CMake //Value Computed by CMake
HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/hl/tools HDF5_HL_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/hl/tools
//Indicate that internal memory allocation sanity checks are enabled //Indicate that internal memory allocation sanity checks are enabled
HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF
@ -462,175 +462,175 @@ HDF5_PACKAGE_EXTLIBS:BOOL=OFF
HDF5_PACK_EXAMPLES:BOOL=OFF HDF5_PACK_EXAMPLES:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1 HDF5_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/src HDF5_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/src
//Value Computed by CMake //Value Computed by CMake
HDF5_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/src HDF5_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/src
//Whether to perform strict file format checks //Whether to perform strict file format checks
HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF HDF5_STRICT_FORMAT_CHECKS:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/test HDF5_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/test HDF5_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/test
//Execute tests with different VFDs //Execute tests with different VFDs
HDF5_TEST_VFD:BOOL=OFF HDF5_TEST_VFD:BOOL=OFF
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools HDF5_TOOLS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/lib HDF5_TOOLS_LIB_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/lib HDF5_TOOLS_LIB_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/lib
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools HDF5_TOOLS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src HDF5_TOOLS_SRC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5copy HDF5_TOOLS_SRC_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5diff HDF5_TOOLS_SRC_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5dump HDF5_TOOLS_SRC_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5format_convert HDF5_TOOLS_SRC_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5import HDF5_TOOLS_SRC_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5jam HDF5_TOOLS_SRC_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5ls HDF5_TOOLS_SRC_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5repack HDF5_TOOLS_SRC_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/h5stat HDF5_TOOLS_SRC_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/src/misc HDF5_TOOLS_SRC_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src/misc HDF5_TOOLS_SRC_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/src HDF5_TOOLS_SRC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/src
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test HDF5_TOOLS_TEST_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5copy HDF5_TOOLS_TEST_H5COPY_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5copy
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5diff HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5diff
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5dump HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5dump
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5format_convert HDF5_TOOLS_TEST_H5FC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5format_convert
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5import HDF5_TOOLS_TEST_H5IMPORT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5import
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5jam HDF5_TOOLS_TEST_H5JAM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5jam
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5ls HDF5_TOOLS_TEST_H5LS_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5ls
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5repack HDF5_TOOLS_TEST_H5REPACK_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5repack
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/h5stat HDF5_TOOLS_TEST_H5STAT_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/h5stat
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/misc HDF5_TOOLS_TEST_MISC_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/misc HDF5_TOOLS_TEST_MISC_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/misc
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/as/tools/test/perform HDF5_TOOLS_TEST_PERFORM_BINARY_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test/perform HDF5_TOOLS_TEST_PERFORM_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test/perform
//Value Computed by CMake //Value Computed by CMake
HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/com.termux/files/home/hdf5-1.10.1/tools/test HDF5_TOOLS_TEST_SOURCE_DIR:STATIC=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/tools/test
//Use the HDF5 1.6.x API by default //Use the HDF5 1.6.x API by default
HDF5_USE_16_API_DEFAULT:BOOL=OFF HDF5_USE_16_API_DEFAULT:BOOL=OFF
@ -657,7 +657,7 @@ HDF_TEST_EXPRESS:BOOL=OFF
HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND
//Command to build the project //Command to build the project
MAKECOMMAND:STRING=/data/data/com.termux/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" MAKECOMMAND:STRING=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
//Path to the memory checking command, used for memory error detection. //Path to the memory checking command, used for memory error detection.
MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND
@ -670,7 +670,7 @@ P4COMMAND:FILEPATH=P4COMMAND-NOTFOUND
//Path to scp command, used by CTest for submitting results to //Path to scp command, used by CTest for submitting results to
// a Dart server // a Dart server
SCPCOMMAND:FILEPATH=/data/data/com.termux/files/usr/bin/scp SCPCOMMAND:FILEPATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/scp
//Name of the computer/site where compile is being run //Name of the computer/site where compile is being run
SITE:STRING=localhost SITE:STRING=localhost
@ -770,7 +770,7 @@ CLOCK_GETTIME_IN_LIBRT:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR //ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1 CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created //This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1/as CMAKE_CACHEFILE_DIR:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1/as
//Major version of cmake used to create the current loaded cache //Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache //Minor version of cmake used to create the current loaded cache
@ -778,13 +778,13 @@ CMAKE_CACHE_MINOR_VERSION:INTERNAL=11
//Patch version of cmake used to create the current loaded cache //Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable. //Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cmake CMAKE_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cmake
//Path to cpack program executable. //Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/cpack CMAKE_CPACK_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cpack
//ADVANCED property for variable: CMAKE_CTEST_COMMAND //ADVANCED property for variable: CMAKE_CTEST_COMMAND
CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1 CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
//Path to ctest program executable. //Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/data/data/com.termux/files/usr/bin/ctest CMAKE_CTEST_COMMAND:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER //ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
@ -843,7 +843,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this //Source directory with the top level CMakeLists.txt file for this
// project // project
CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/com.termux/files/home/hdf5-1.10.1 CMAKE_HOME_DIRECTORY:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/home/hdf5-1.10.1
//Install .so files without execute permission. //Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_LINKER //ADVANCED property for variable: CMAKE_LINKER
@ -875,7 +875,7 @@ CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB //ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1 CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation. //Path to CMake installation.
CMAKE_ROOT:INTERNAL=/data/data/com.termux/files/usr/share/cmake-3.11 CMAKE_ROOT:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/share/cmake-3.11
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@ -907,7 +907,7 @@ CMAKE_STD_NAMESPACE:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_STRIP //ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command //uname command
CMAKE_UNAME:INTERNAL=/data/data/com.termux/files/usr/bin/uname CMAKE_UNAME:INTERNAL=/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: COVERAGE_COMMAND //ADVANCED property for variable: COVERAGE_COMMAND

View File

@ -40,7 +40,7 @@ char H5libhdf5_settings[]=
" Host system: Linux-4.9.95-android-x86_64-gd25a822a6c78\n" " Host system: Linux-4.9.95-android-x86_64-gd25a822a6c78\n"
" Uname information: Linux\n" " Uname information: Linux\n"
" Byte sex: little-endian\n" " Byte sex: little-endian\n"
" Installation point: /data/data/com.termux/files/usr\n" " Installation point: /data/data/me.sergiotarxz.openmg.x11/files/usr\n"
"\n" "\n"
"Compiling Options:\n" "Compiling Options:\n"
"------------------\n" "------------------\n"
@ -58,13 +58,13 @@ char H5libhdf5_settings[]=
" H5_LDFLAGS: \n" " H5_LDFLAGS: \n"
" AM_LDFLAGS: \n" " AM_LDFLAGS: \n"
" Extra libraries: m;dl\n" " Extra libraries: m;dl\n"
" Archiver: /data/data/com.termux/files/usr/bin/ar\n" " Archiver: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ar\n"
" Ranlib: /data/data/com.termux/files/usr/bin/ranlib\n" " Ranlib: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/ranlib\n"
"\n" "\n"
"Languages:\n" "Languages:\n"
"----------\n" "----------\n"
" C: yes\n" " C: yes\n"
" C Compiler: /data/data/com.termux/files/usr/bin/cc 7.0.0\n" " C Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/cc 7.0.0\n"
" CPPFLAGS: \n" " CPPFLAGS: \n"
" H5_CPPFLAGS: \n" " H5_CPPFLAGS: \n"
" AM_CPPFLAGS: \n" " AM_CPPFLAGS: \n"
@ -83,7 +83,7 @@ char H5libhdf5_settings[]=
" Static Fortran Library: YES\n" " Static Fortran Library: YES\n"
"\n" "\n"
" C++: ON\n" " C++: ON\n"
" C++ Compiler: /data/data/com.termux/files/usr/bin/c++ 7.0.0\n" " C++ Compiler: /data/data/me.sergiotarxz.openmg.x11/files/usr/bin/c++ 7.0.0\n"
" C++ Flags: \n" " C++ Flags: \n"
" H5 C++ Flags: \n" " H5 C++ Flags: \n"
" AM C++ Flags: \n" " AM C++ Flags: \n"

View File

@ -2,8 +2,8 @@ TERMUX_PKG_HOMEPAGE=https://wiki.gnome.org/action/show/Projects/libsoup
TERMUX_PKG_DESCRIPTION="HTTP client and server library" TERMUX_PKG_DESCRIPTION="HTTP client and server library"
TERMUX_PKG_LICENSE="LGPL-2.0" TERMUX_PKG_LICENSE="LGPL-2.0"
TERMUX_PKG_MAINTAINER="@termux" TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.70.0 TERMUX_PKG_VERSION=2.74.2
TERMUX_PKG_REVISION=2 TERMUX_PKG_REVISION=0
TERMUX_PKG_SRCURL=https://ftp.gnome.org/pub/GNOME/sources/libsoup/${TERMUX_PKG_VERSION:0:4}/libsoup-$TERMUX_PKG_VERSION.tar.xz TERMUX_PKG_SRCURL=https://ftp.gnome.org/pub/GNOME/sources/libsoup/${TERMUX_PKG_VERSION:0:4}/libsoup-$TERMUX_PKG_VERSION.tar.xz
TERMUX_PKG_SHA256=54b020f74aefa438918d8e53cff62e2b1e59efe2de53e06b19a4b07b1f4d5342 TERMUX_PKG_SHA256=54b020f74aefa438918d8e53cff62e2b1e59efe2de53e06b19a4b07b1f4d5342
TERMUX_PKG_DEPENDS="glib, libpsl, libsqlite, libxml2, brotli" TERMUX_PKG_DEPENDS="glib, libpsl, libsqlite, libxml2, brotli"
@ -11,7 +11,4 @@ TERMUX_PKG_BREAKS="libsoup-dev"
TERMUX_PKG_REPLACES="libsoup-dev" TERMUX_PKG_REPLACES="libsoup-dev"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-Dintrospection=disabled -Dintrospection=disabled
-Dvapi=disabled
-Dgssapi=disabled
-Dtls_check=false
" "

View File

@ -1,4 +1,4 @@
--- data/data/com.termux/files/usr/include/c++/v1/cmath.orig 2019-03-24 00:31:49.512145195 +0000 --- data/data/me.sergiotarxz.openmg.x11/files/usr/include/c++/v1/cmath.orig 2019-03-24 00:31:49.512145195 +0000
+++ ./cmath 2019-03-24 00:32:19.392703442 +0000 +++ ./cmath 2019-03-24 00:32:19.392703442 +0000
@@ -301,7 +301,7 @@ @@ -301,7 +301,7 @@
*/ */
@ -9,7 +9,7 @@
#include "version" #include "version"
#include <type_traits> #include <type_traits>
--- data/data/com.termux/files/usr/include/c++/v1/math.h.orig 2019-03-24 01:10:28.881807799 +0000 --- data/data/me.sergiotarxz.openmg.x11/files/usr/include/c++/v1/math.h.orig 2019-03-24 01:10:28.881807799 +0000
+++ ./math.h 2019-03-24 01:11:01.078384393 +0000 +++ ./math.h 2019-03-24 01:11:01.078384393 +0000
@@ -300,7 +300,7 @@ @@ -300,7 +300,7 @@
#define _LIBCPP_STDLIB_INCLUDE_NEXT #define _LIBCPP_STDLIB_INCLUDE_NEXT

View File

@ -10,7 +10,7 @@ TERMUX_PKG_SHA256=5daca6ca216495edf89d167f808d1d03c4a4d929cef7da5e10f135ae1540c7
TERMUX_PKG_AUTO_UPDATE=true TERMUX_PKG_AUTO_UPDATE=true
# Avoid tests, otherwise we run into the same/similar issue as in # Avoid tests, otherwise we run into the same/similar issue as in
# https://github.com/termux/termux-packages/issues/1149 # https://github.com/termux/termux-packages/issues/1149
# /home/builder/.termux-build/_cache/android-r23b-api-24-v6/bin/clang++ --target=aarch64-none-linux-android --gcc-toolchain=/home/builder/.termux-build/_cache/android-r23b-api-24-v6 --sysroot=/home/builder/.termux-build/_cache/android-r23b-api-24-v6/sysroot -I/home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest -fstack-protector-strong -Oz --target=aarch64-linux-android24 -I/data/data/com.termux/files/usr/include -O3 -DNDEBUG -fPIC -MD -MT test/CMakeFiles/doctest_main.dir/src/unit.cpp.o -MF test/CMakeFiles/doctest_main.dir/src/unit.cpp.o.d -o test/CMakeFiles/doctest_main.dir/src/unit.cpp.o -c /home/builder/.termux-build/nlohmann-json/src/test/src/unit.cpp # /home/builder/.termux-build/_cache/android-r23b-api-24-v6/bin/clang++ --target=aarch64-none-linux-android --gcc-toolchain=/home/builder/.termux-build/_cache/android-r23b-api-24-v6 --sysroot=/home/builder/.termux-build/_cache/android-r23b-api-24-v6/sysroot -I/home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest -fstack-protector-strong -Oz --target=aarch64-linux-android24 -I/data/data/me.sergiotarxz.openmg.x11/files/usr/include -O3 -DNDEBUG -fPIC -MD -MT test/CMakeFiles/doctest_main.dir/src/unit.cpp.o -MF test/CMakeFiles/doctest_main.dir/src/unit.cpp.o.d -o test/CMakeFiles/doctest_main.dir/src/unit.cpp.o -c /home/builder/.termux-build/nlohmann-json/src/test/src/unit.cpp
# In file included from /home/builder/.termux-build/nlohmann-json/src/test/src/unit.cpp:31: # In file included from /home/builder/.termux-build/nlohmann-json/src/test/src/unit.cpp:31:
# In file included from /home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest/doctest_compatibility.h:6: # In file included from /home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest/doctest_compatibility.h:6:
# In file included from /home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest/doctest.h:2806: # In file included from /home/builder/.termux-build/nlohmann-json/src/test/thirdparty/doctest/doctest.h:2806:

View File

@ -1,4 +1,4 @@
--- /data/data/com.termux/files/home/.termux-build/osm2pgsql/src/cmake/FindLua.cmake 2021-02-03 10:26:41.000000000 -0500 --- /data/data/me.sergiotarxz.openmg.x11/files/home/.termux-build/osm2pgsql/src/cmake/FindLua.cmake 2021-02-03 10:26:41.000000000 -0500
+++ ./cmake/FindLua.cmake 2021-03-02 00:07:15.583814032 -0500 +++ ./cmake/FindLua.cmake 2021-03-02 00:07:15.583814032 -0500
@@ -126,14 +126,7 @@ @@ -126,14 +126,7 @@
unset(_lua_library_names) unset(_lua_library_names)

View File

@ -1,2 +1,2 @@
#!/data/data/com.termux/files/usr/bin/sh #!/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/sh
export PATH=/data/data/com.termux/files/usr/opt/rustc-nightly/bin:$PATH export PATH=/data/data/me.sergiotarxz.openmg.x11/files/usr/opt/rustc-nightly/bin:$PATH

View File

@ -83,7 +83,7 @@ index 4b00164..9e6a8bc 100644
let mut output_socket = socket::Socket::new()?; let mut output_socket = socket::Socket::new()?;
@@ -43,7 +78,7 @@ fn communicate(args: &[&str], input: &[u8]) -> Result<String, Box<dyn Error>> { @@ -43,7 +78,7 @@ fn communicate(args: &[&str], input: &[u8]) -> Result<String, Box<dyn Error>> {
.args(&["-n", "com.termux.api/.TermuxApiReceiver"]) .args(&["-n", "me.sergiotarxz.openmg.x11.api/.TermuxApiReceiver"])
.args(&["--es", "socket_input", &output_socket.address()]) .args(&["--es", "socket_input", &output_socket.address()])
.args(&["--es", "socket_output", &input_socket.address()]) .args(&["--es", "socket_output", &input_socket.address()])
- .args(&["--es", "api_method", "Keystore", "-e", "command"]) - .args(&["--es", "api_method", "Keystore", "-e", "command"])

View File

@ -42,7 +42,7 @@ fi
am broadcast --user 0 \ am broadcast --user 0 \
-a $ACTION \ -a $ACTION \
-n com.termux/com.termux.app.TermuxOpenReceiver \ -n me.sergiotarxz.openmg.x11/me.sergiotarxz.openmg.x11.app.TermuxOpenReceiver \
$EXTRAS \ $EXTRAS \
-d "$FILE" \ -d "$FILE" \
> /dev/null > /dev/null

View File

@ -9,4 +9,4 @@ if [ "$#" != "0" ]; then
exit exit
fi fi
am broadcast --user 0 -a com.termux.app.reload_style com.termux > /dev/null am broadcast --user 0 -a me.sergiotarxz.openmg.x11.app.reload_style me.sergiotarxz.openmg.x11 > /dev/null

View File

@ -45,6 +45,6 @@ else
/system/bin/killall -9 "$SHELL" /system/bin/killall -9 "$SHELL"
else else
export CLASSPATH="@TERMUX_CACHE_DIR@/termux-am/am.apk" export CLASSPATH="@TERMUX_CACHE_DIR@/termux-am/am.apk"
/system/bin/app_process / com.termux.termuxam.Am stopservice com.termux/.app.TermuxService /system/bin/app_process / me.sergiotarxz.openmg.x11.termuxam.Am stopservice me.sergiotarxz.openmg.x11/.app.TermuxService
fi fi
fi fi

View File

@ -25,5 +25,5 @@ if [ -d "@TERMUX_HOME@/storage" ]; then
fi fi
am broadcast --user 0 \ am broadcast --user 0 \
--es com.termux.app.reload_style storage \ --es me.sergiotarxz.openmg.x11.app.reload_style storage \
-a com.termux.app.reload_style com.termux > /dev/null -a me.sergiotarxz.openmg.x11.app.reload_style me.sergiotarxz.openmg.x11 > /dev/null

View File

@ -8,6 +8,6 @@ fi
am startservice \ am startservice \
--user 0 \ --user 0 \
-a com.termux.service_wake_lock \ -a me.sergiotarxz.openmg.x11.service_wake_lock \
com.termux/com.termux.app.TermuxService \ me.sergiotarxz.openmg.x11/me.sergiotarxz.openmg.x11.app.TermuxService \
> /dev/null > /dev/null

View File

@ -8,6 +8,6 @@ fi
am startservice \ am startservice \
--user 0 \ --user 0 \
-a com.termux.service_wake_unlock \ -a me.sergiotarxz.openmg.x11.service_wake_unlock \
com.termux/com.termux.app.TermuxService \ me.sergiotarxz.openmg.x11/me.sergiotarxz.openmg.x11.app.TermuxService \
> /dev/null > /dev/null

View File

@ -267,7 +267,7 @@ or have restarted the application.
`allow-external-apps` `allow-external-apps`
: If set to "true", external applications are allowed to execute : If set to "true", external applications are allowed to execute
arbitrary commands within the Termux environment through the arbitrary commands within the Termux environment through the
RUN_COMMAND intent, if permission com.termux.permission.RUN_COMMAND RUN_COMMAND intent, if permission me.sergiotarxz.openmg.x11.permission.RUN_COMMAND
has been granted. has been granted.
This option is also required for functionality of **termux-open** This option is also required for functionality of **termux-open**
@ -698,7 +698,7 @@ Android does not allow to have a direct write access to external storage
like SD-cards and USB drives unless you are not doing so in private like SD-cards and USB drives unless you are not doing so in private
directories like directories like
/storage/0123-ABCD/Android/data/com.termux/files /storage/0123-ABCD/Android/data/me.sergiotarxz.openmg.x11/files
If you want to write files to storage root or directory other than private If you want to write files to storage root or directory other than private
one of Termux, you need superuser permissions. one of Termux, you need superuser permissions.
@ -744,7 +744,7 @@ storage access over Android API which cannot be used by shell.
From that point you are locked to Termux private directories like $HOME or From that point you are locked to Termux private directories like $HOME or
such on storage volume: such on storage volume:
/storage/self/primary/Android/data/com.termux/files /storage/self/primary/Android/data/me.sergiotarxz.openmg.x11/files
You still should be able to exchange files with Termux home directory by You still should be able to exchange files with Termux home directory by
accessing Termux virtual volume through File managers supporting Storage accessing Termux virtual volume through File managers supporting Storage

View File

@ -12,7 +12,7 @@
# allow-external-apps = true # allow-external-apps = true
### Default working directory that will be used when launching the app. ### Default working directory that will be used when launching the app.
# default-working-directory = /data/data/com.termux/files/home # default-working-directory = /data/data/me.sergiotarxz.openmg.x11/files/home
### Uncomment to disable toasts shown on terminal session change. ### Uncomment to disable toasts shown on terminal session change.
# disable-terminal-session-change-toast = true # disable-terminal-session-change-toast = true

View File

@ -1,6 +1,6 @@
diff --git a/data/data/com.termux/files/usr/tmp/docker-build/containerd-1.4.3/Makefile b/Makefile diff --git a/data/data/me.sergiotarxz.openmg.x11/files/usr/tmp/docker-build/containerd-1.4.3/Makefile b/Makefile
index c0fecb9..e724e52 100644 index c0fecb9..e724e52 100644
--- a/data/data/com.termux/files/usr/tmp/docker-build/containerd-1.4.3/Makefile --- a/data/data/me.sergiotarxz.openmg.x11/files/usr/tmp/docker-build/containerd-1.4.3/Makefile
+++ b/Makefile +++ b/Makefile
@@ -20,10 +20,10 @@ ROOTDIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST)))) @@ -20,10 +20,10 @@ ROOTDIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST))))
DESTDIR ?= /usr/local DESTDIR ?= /usr/local

View File

@ -1,6 +1,6 @@
diff --git a/data/data/com.termux/files/home/test/containerd-1.4.3/runtime/v1/linux/bundle.go b/runtime/v1/linux/bundle.go diff --git a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/runtime/v1/linux/bundle.go b/runtime/v1/linux/bundle.go
index 9d0a6c4..a2063b2 100644 index 9d0a6c4..a2063b2 100644
--- a/data/data/com.termux/files/home/test/containerd-1.4.3/runtime/v1/linux/bundle.go --- a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/runtime/v1/linux/bundle.go
+++ b/runtime/v1/linux/bundle.go +++ b/runtime/v1/linux/bundle.go
@@ -138,7 +138,7 @@ func (b *bundle) legacyShimAddress(namespace string) string { @@ -138,7 +138,7 @@ func (b *bundle) legacyShimAddress(namespace string) string {
return filepath.Join(string(filepath.Separator), "containerd-shim", namespace, b.id, "shim.sock") return filepath.Join(string(filepath.Separator), "containerd-shim", namespace, b.id, "shim.sock")

View File

@ -1,6 +1,6 @@
diff --git a/data/data/com.termux/files/home/test/containerd-1.4.3/platforms/database.go b/platforms/database.go diff --git a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/platforms/database.go b/platforms/database.go
index 6ede940..d010005 100644 index 6ede940..d010005 100644
--- a/data/data/com.termux/files/home/test/containerd-1.4.3/platforms/database.go --- a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/platforms/database.go
+++ b/platforms/database.go +++ b/platforms/database.go
@@ -25,7 +25,11 @@ import ( @@ -25,7 +25,11 @@ import (
// //

View File

@ -1,6 +1,6 @@
diff --git a/data/data/com.termux/files/home/test/containerd-1.4.3/runtime/v2/shim/util_unix.go b/runtime/v2/shim/util_unix.go diff --git a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/runtime/v2/shim/util_unix.go b/runtime/v2/shim/util_unix.go
index 2b0d0ad..9adb593 100644 index 2b0d0ad..9adb593 100644
--- a/data/data/com.termux/files/home/test/containerd-1.4.3/runtime/v2/shim/util_unix.go --- a/data/data/me.sergiotarxz.openmg.x11/files/home/test/containerd-1.4.3/runtime/v2/shim/util_unix.go
+++ b/runtime/v2/shim/util_unix.go +++ b/runtime/v2/shim/util_unix.go
@@ -66,7 +66,7 @@ func AdjustOOMScore(pid int) error { @@ -66,7 +66,7 @@ func AdjustOOMScore(pid int) error {
return nil return nil

View File

@ -6,7 +6,7 @@ diff -uNr wireless_tools.30/Makefile wireless_tools.30.mod2/Makefile
## Distributions should probably use /, but they probably know better... ## Distributions should probably use /, but they probably know better...
ifndef PREFIX ifndef PREFIX
- PREFIX = /usr/local - PREFIX = /usr/local
+ PREFIX = /data/data/com.termux/files/usr + PREFIX = /data/data/me.sergiotarxz.openmg.x11/files/usr
endif endif
## Compiler to use (modify this for cross compile). ## Compiler to use (modify this for cross compile).

View File

@ -267,7 +267,7 @@ Available command_options:
The package name/prefix that the bootstrap is built for is defined by The package name/prefix that the bootstrap is built for is defined by
TERMUX_APP_PACKAGE in 'scrips/properties.sh'. It defaults to 'com.termux'. TERMUX_APP_PACKAGE in 'scrips/properties.sh'. It defaults to 'me.sergiotarxz.openmg.x11'.
If package name is changed, make sure to run If package name is changed, make sure to run
`./scripts/run-docker.sh ./clean.sh` or pass '-f' to force rebuild of packages. `./scripts/run-docker.sh ./clean.sh` or pass '-f' to force rebuild of packages.

View File

@ -22,7 +22,7 @@ else
fi fi
# Termux packages configuration. # Termux packages configuration.
TERMUX_APP_PACKAGE="com.termux" TERMUX_APP_PACKAGE="me.sergiotarxz.openmg.x11"
TERMUX_BASE_DIR="/data/data/${TERMUX_APP_PACKAGE}/files" TERMUX_BASE_DIR="/data/data/${TERMUX_APP_PACKAGE}/files"
TERMUX_CACHE_DIR="/data/data/${TERMUX_APP_PACKAGE}/cache" TERMUX_CACHE_DIR="/data/data/${TERMUX_APP_PACKAGE}/cache"
TERMUX_ANDROID_HOME="${TERMUX_BASE_DIR}/home" TERMUX_ANDROID_HOME="${TERMUX_BASE_DIR}/home"

View File

@ -1,4 +1,4 @@
#!/data/data/com.termux/files/usr/bin/bash #!/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/bash
if [ $# != 1 ]; then if [ $# != 1 ]; then
echo "Specify package to run tests for as only argument" echo "Specify package to run tests for as only argument"

View File

@ -0,0 +1,9 @@
TERMUX_PKG_HOMEPAGE=https://gitlab.gnome.org/GNOME/libadwaita
TERMUX_PKG_DESCRIPTION="GNOME Guidelines library"
TERMUX_PKG_LICENSE="LGPL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.1.1
TERMUX_PKG_REVISION=0
TERMUX_PKG_SRCURL=https://gitlab.gnome.org/GNOME/libadwaita/-/archive/1.1.1/libadwaita-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=54b020f74aefa438918d8e53cff62e2b1e59efe2de53e06b19a4b07b1f4d5342
TERMUX_PKG_DEPENDS="gtk4"

View File

@ -0,0 +1,9 @@
TERMUX_PKG_HOMEPAGE=https://gitea.sergiotarxz.freemyip.com/sergiotarxz/mangareader
TERMUX_PKG_DESCRIPTION="Manga reader for GNOME"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.0.9
TERMUX_PKG_REVISION=0
TERMUX_PKG_SRCURL=https://gitea.sergiotarxz.freemyip.com/sergiotarxz/mangareader/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=54b020f74aefa438918d8e53cff62e2b1e59efe2de53e06b19a4b07b1f4d5342
TERMUX_PKG_DEPENDS="gtk4, libadwaita, libsoup, pcre2"

View File

@ -1,4 +1,4 @@
#!/data/data/com.termux/files/usr/bin/bash #!/data/data/me.sergiotarxz.openmg.x11/files/usr/bin/bash
## ##
## A script for building qmake on device. ## A script for building qmake on device.
## Use in Termux only ! ## Use in Termux only !
@ -9,7 +9,7 @@
set -e set -e
TERMUX_PREFIX=/data/data/com.termux/files/usr TERMUX_PREFIX=/data/data/me.sergiotarxz.openmg.x11/files/usr
if [ $(uname -o) != Android ]; then if [ $(uname -o) != Android ]; then
echo "This script should be run in Termux !" echo "This script should be run in Termux !"

View File

@ -7,11 +7,11 @@
#include <wayland-client.h> #include <wayland-client.h>
#ifndef TERMUX_PREFIX #ifndef TERMUX_PREFIX
# define TERMUX_PREFIX "/data/data/com.termux/files/usr" # define TERMUX_PREFIX "/data/data/me.sergiotarxz.openmg.x11/files/usr"
#endif #endif
#ifndef TERMUX_X11_DIR #ifndef TERMUX_X11_DIR
# define TERMUX_X11_DIR "/data/data/com.termux.x11/" # define TERMUX_X11_DIR "/data/data/me.sergiotarxz.openmg.x11.x11/"
#endif #endif
int dir_exists(const char *dir) { int dir_exists(const char *dir) {
@ -65,7 +65,7 @@ int main(int argc, char *argv[]) {
return 1; return 1;
} }
char *server_argv[] = {TERMUX_PREFIX "/bin/am", "start", "-n", "com.termux.x11/.MainActivity", NULL}; char *server_argv[] = {TERMUX_PREFIX "/bin/am", "start", "-n", "me.sergiotarxz.openmg.x11.x11/.MainActivity", NULL};
if (!connection_exists()) { if (!connection_exists()) {
if (start_server(server_argv) == -1) { if (start_server(server_argv) == -1) {