Lines Matching full:cmake
6 Builds must use CMake 3.15 or higher as the build system generator. The
8 (Windows) and Make (Linux and macOS), but CMake supports other build system
13 Builds for Windows are tested with CMake 3.17, and Visual Studio 2019 or newer.
17 To use CMake you must first configure the build. Create a build directory in
18 the root of the `astcenc` checkout, and then run `cmake` inside that directory
29 cmake -G "Visual Studio 16 2019" -T ClangCL -DCMAKE_INSTALL_PREFIX=..\ ^
33 cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=..\ ^
37 A single CMake configure can build multiple binaries for a single target CPU
59 Builds for macOS and Linux are tested with CMake 3.17, and clang++ 9.0 or
66 To use CMake you must first configure the build. Create a build directory
67 in the root of the astcenc checkout, and then run `cmake` inside that directory
81 cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../ \
85 cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../ \
89 cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../ ..
92 A single CMake configure can build multiple binaries for a single target CPU
119 Builds for macOS and Linux are tested with CMake 3.17, and XCode 14.0 or
124 To use CMake you must first configure the build. Create a build directory
125 in the root of the astcenc checkout, and then run `cmake` inside that directory
134 cmake -G Xcode -DCMAKE_INSTALL_PREFIX=../ ..
139 Once you have configured the build you can use CMake to compile the project
143 cmake --build . --config Release
146 cmake --install . --config Release
169 We support building the core library as a shared object by setting the CMake
182 by adding `-DASTCENC_BLOCK_MAX_TEXELS=<texel_count>` to to CMake command line
202 To enable this binary variant add `-DASTCENC_ISA_NONE=ON` to the CMake command
217 To build unit tests add `-DASTCENC_UNITTEST=ON` to the CMake command line when
220 To run unit tests use the CMake `ctest` utility from your build directory after
232 to the CMake command line when configuring.
254 cmake \
257 -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK}/build/cmake/android.toolchain.cmake \
274 the current CMake configuration using the `package` build target
276 Configure CMake with:
293 integrated into other projects using CMake. An example of the CMake integration