This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (C) 2017 Basile Fraboni | |
| // Copyright (C) 2014 Ivan Kutskir | |
| // All Rights Reserved | |
| // You may use, distribute and modify this code under the | |
| // terms of the MIT license. For further details please refer | |
| // to : https://mit-license.org/ | |
| // | |
| //! | |
| //! \file blur.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cross toolchain configuration for using clang-cl. | |
| set(CMAKE_SYSTEM_NAME Windows) | |
| set(CMAKE_SYSTEM_VERSION 10.0) | |
| set(CMAKE_SYSTEM_PROCESSOR AMD64) | |
| set(CMAKE_C_COMPILER "/usr/bin/clang-cl-9") | |
| set(CMAKE_CXX_COMPILER "/usr/bin/clang-cl-9") | |
| set(CMAKE_LINKER "/usr/bin/lld-link-9") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Sample toolchain file for building for Windows from an Ubuntu Linux system. | |
| # | |
| # Typical usage: | |
| # *) install cross compiler: `sudo apt-get install mingw-w64` or `brew install mingw-w64` on macOS | |
| # *) cmake -DCMAKE_TOOLCHAIN_FILE=~/mingw-w64-x86_64.cmake -G Ninja -B build -S . | |
| # *) ninja -C build | |
| set(CMAKE_SYSTEM_NAME Windows) | |
| set(TOOLCHAIN_PREFIX x86_64-w64-mingw32) |
OlderNewer