├── .github └── workflows │ └── build.yml ├── CMakeLists.txt ├── README.md ├── UNLICENSE.txt ├── curl └── CMakeLists.txt ├── download_dependencies.bat ├── freetype └── CMakeLists.txt ├── giflib ├── CMakeLists.txt ├── getopt.c ├── getopt.h ├── stdbool.h └── unistd.h.in ├── glut └── CMakeLists.txt ├── libjpeg └── CMakeLists.txt ├── libpng └── CMakeLists.txt ├── libtiff ├── CMakeLists.txt ├── tif_config.mingw.h └── tiffconf.mingw.h ├── versions.md └── zlib └── CMakeLists.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/curl/CMakeLists.txt -------------------------------------------------------------------------------- /download_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/download_dependencies.bat -------------------------------------------------------------------------------- /freetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/freetype/CMakeLists.txt -------------------------------------------------------------------------------- /giflib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/giflib/CMakeLists.txt -------------------------------------------------------------------------------- /giflib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/giflib/getopt.c -------------------------------------------------------------------------------- /giflib/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/giflib/getopt.h -------------------------------------------------------------------------------- /giflib/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/giflib/stdbool.h -------------------------------------------------------------------------------- /giflib/unistd.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/giflib/unistd.h.in -------------------------------------------------------------------------------- /glut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/glut/CMakeLists.txt -------------------------------------------------------------------------------- /libjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/libjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /libtiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/libtiff/CMakeLists.txt -------------------------------------------------------------------------------- /libtiff/tif_config.mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/libtiff/tif_config.mingw.h -------------------------------------------------------------------------------- /libtiff/tiffconf.mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/libtiff/tiffconf.mingw.h -------------------------------------------------------------------------------- /versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/versions.md -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornblissing/osg-3rdparty-cmake/HEAD/zlib/CMakeLists.txt --------------------------------------------------------------------------------