From d7bd2e3d50d5b5b51f5af28343a6f03ed2efbcfc Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 3 Jan 2020 18:00:24 +0300 Subject: rearrange all files completely --- .gitignore | 1 + boost/build/build.py | 334 +++++++++++++++++++++++++++++++++ boost/build/ci/travis.py | 95 ++++++++++ boost/toolchains/mingw-w64-x64-exe.jam | 1 + boost/toolchains/mingw-w64-x64.jam | 1 + boost/toolchains/mingw-w64-x86-exe.jam | 1 + boost/toolchains/mingw-w64-x86.jam | 1 + ci/.gitignore | 1 - ci/boost/build.py | 334 --------------------------------- ci/boost/build_travis.py | 95 ---------- ci/build.py | 199 -------------------- ci/build_appveyor.py | 157 ---------------- ci/build_travis.py | 90 --------- cmake/build/build.py | 199 ++++++++++++++++++++ cmake/build/ci/appveyor.py | 157 ++++++++++++++++ cmake/build/ci/travis.py | 90 +++++++++ cmake/common.cmake | 212 +++++++++++++++++++++ cmake/toolchains/README.md | 3 + cmake/toolchains/gcc-x64.cmake | 4 + cmake/toolchains/gcc-x86.cmake | 4 + cmake/toolchains/mingw-w64-x64.cmake | 3 + cmake/toolchains/mingw-w64-x86.cmake | 3 + common.cmake | 212 --------------------- toolchains/README.md | 3 - toolchains/boost/mingw-w64-x64-exe.jam | 1 - toolchains/boost/mingw-w64-x64.jam | 1 - toolchains/boost/mingw-w64-x86-exe.jam | 1 - toolchains/boost/mingw-w64-x86.jam | 1 - toolchains/gcc-x64.cmake | 4 - toolchains/gcc-x86.cmake | 4 - toolchains/mingw-w64-x64.cmake | 3 - toolchains/mingw-w64-x86.cmake | 3 - 32 files changed, 1109 insertions(+), 1109 deletions(-) create mode 100644 .gitignore create mode 100755 boost/build/build.py create mode 100755 boost/build/ci/travis.py create mode 100644 boost/toolchains/mingw-w64-x64-exe.jam create mode 100644 boost/toolchains/mingw-w64-x64.jam create mode 100644 boost/toolchains/mingw-w64-x86-exe.jam create mode 100644 boost/toolchains/mingw-w64-x86.jam delete mode 100644 ci/.gitignore delete mode 100755 ci/boost/build.py delete mode 100755 ci/boost/build_travis.py delete mode 100755 ci/build.py delete mode 100755 ci/build_appveyor.py delete mode 100755 ci/build_travis.py create mode 100755 cmake/build/build.py create mode 100755 cmake/build/ci/appveyor.py create mode 100755 cmake/build/ci/travis.py create mode 100644 cmake/common.cmake create mode 100644 cmake/toolchains/README.md create mode 100644 cmake/toolchains/gcc-x64.cmake create mode 100644 cmake/toolchains/gcc-x86.cmake create mode 100644 cmake/toolchains/mingw-w64-x64.cmake create mode 100644 cmake/toolchains/mingw-w64-x86.cmake delete mode 100644 common.cmake delete mode 100644 toolchains/README.md delete mode 100644 toolchains/boost/mingw-w64-x64-exe.jam delete mode 100644 toolchains/boost/mingw-w64-x64.jam delete mode 100644 toolchains/boost/mingw-w64-x86-exe.jam delete mode 100644 toolchains/boost/mingw-w64-x86.jam delete mode 100644 toolchains/gcc-x64.cmake delete mode 100644 toolchains/gcc-x86.cmake delete mode 100644 toolchains/mingw-w64-x64.cmake delete mode 100644 toolchains/mingw-w64-x86.cmake diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__/ diff --git a/boost/build/build.py b/boost/build/build.py new file mode 100755 index 0000000..d535338 --- /dev/null +++ b/boost/build/build.py @@ -0,0 +1,334 @@ +#!/usr/bin/env python3 + +# Copyright (c) 2019 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# This script downloads and builds the Boost libraries. +# It's main utility is being able to download & unpack the Boost distribution +# archive in a cross-platform way + setting the correct --stagedir parameter +# value to avoid name clashes. + +import argparse +from contextlib import contextmanager +from enum import Enum +import logging +import os.path +import platform +import re +import shutil +import subprocess +import sys +import tempfile +import urllib.request + + +@contextmanager +def _chdir(path): + cwd = os.getcwd() + os.chdir(path) + try: + yield + finally: + os.chdir(cwd) + + +def _setup_logging(): + logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(message)s', + level=logging.INFO) + + +def _on_windows(): + return platform.system() == 'Windows' + + +def _run_executable(cmd_line): + logging.info('Running executable: %s', cmd_line) + return subprocess.run(cmd_line, check=True) + + +class Platform(Enum): + X86 = 'x86' + X64 = 'x64' + WIN32 = 'Win32' + + def __str__(self): + return self.value + + @staticmethod + def all(): + return (Platform.X86, Platform.X64) + + def get_address_model(self): + if self is Platform.X86: + return 32 + if self is Platform.X64: + return 64 + if self is Platform.WIN32: + return 32 + raise NotImplementedError(f'unsupported platform: {self}') + + +def _parse_platform(s): + try: + return Platform(s) + except ValueError: + raise argparse.ArgumentTypeError(f'invalid platform: {s}') + + +class Configuration(Enum): + DEBUG = 'Debug' + RELEASE = 'Release' + + @staticmethod + def all(): + return tuple(Configuration) + + def __str__(self): + return self.value + + +def _parse_configuration(s): + try: + return Configuration(s) + except ValueError: + raise argparse.ArgumentTypeError(f'invalid configuration: {s}') + + +class BoostVersion: + def __init__(self, major, minor, patch): + self.major = major + self.minor = minor + self.patch = patch + + @staticmethod + def from_string(s): + result = re.match(r'^(\d+)\.(\d+)\.(\d+)$', s) + if result is None: + raise ValueError(f'invalid Boost version: {s}') + return BoostVersion(result.group(1), result.group(2), result.group(3)) + + def __str__(self): + return f'{self.major}.{self.minor}.{self.patch}' + + @property + def archive_ext(self): + return '.tar.gz' + + def dir_path(self, parent_dir): + return os.path.join(parent_dir, self.dir_name) + + @property + def dir_name(self): + return f'boost_{self.major}_{self.minor}_{self.patch}' + + @property + def archive_name(self): + return f'{self.dir_name}{self.archive_ext}' + + def get_download_url(self): + return f'https://dl.bintray.com/boostorg/release/{self}/source/{self.archive_name}' + + +class BoostArchive: + def __init__(self, version, path): + self.version = version + self.path = path + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_value, traceback): + logging.info('Removing temporary file: %s', self.path) + os.remove(self.path) + + @property + def dir_name(self): + return self.version.dir_name + + @staticmethod + def download(version): + path = None + with tempfile.NamedTemporaryFile(prefix='boost_', suffix=version.archive_ext, delete=False) as dest: + path = dest.name + logging.info('Downloading Boost to: %s', path) + url = version.get_download_url() + logging.info('Download URL: %s', url) + + with urllib.request.urlopen(url) as request: + dest.write(request.read()) + return BoostArchive(version, path) + + +class BoostDir: + def __init__(self, path): + if not os.path.isdir(path): + raise RuntimeError(f"Boost directory doesn't exist: {path}") + self.path = path + + @staticmethod + def unpack(archive, dest): + path = os.path.join(dest, archive.dir_name) + if os.path.exists(path): + raise RuntimeError(f'Boost directory already exists: {path}') + logging.info('Unpacking Boost to: %s', path) + shutil.unpack_archive(archive.path, dest) + return BoostDir(path) + + def _go(self): + return _chdir(self.path) + + def build(self, params): + with self._go(): + self._bootstrap_if_required() + self._b2(params) + + def _bootstrap_if_required(self): + if os.path.isfile(self._b2_path()): + logging.info('Not going to bootstrap, b2 is already there') + return + self.bootstrap() + + def bootstrap(self): + with self._go(): + _run_executable(self._bootstrap_path()) + + def _b2(self, params): + for b2_params in params.enum_b2_params(): + _run_executable([self._b2_path()] + b2_params) + + @staticmethod + def _bootstrap_path(): + return os.path.join('.', BoostDir._bootstrap_name()) + + @staticmethod + def _bootstrap_name(): + ext = '.sh' + if _on_windows(): + ext = '.bat' + return f'bootstrap{ext}' + + @staticmethod + def _b2_path(): + return os.path.join('.', BoostDir._b2_name()) + + @staticmethod + def _b2_name(): + ext = '' + if _on_windows(): + ext = '.exe' + return f'b2{ext}' + + +class BoostBuild: + def __init__(self, args): + self.platforms = args.platforms or Platform.all() + self.configurations = args.configurations or Configuration.all() + self.b2_args = args.b2_args + + def enum_b2_params(self): + for platform in self.platforms: + platform_params = [] + platform_params.append(self._address_model(platform)) + platform_params += self.b2_args + if _on_windows(): + platform_params.append(self._windows_stagedir(platform)) + platform_params.append(self._windows_variant(self.configurations)) + yield platform_params + else: + for configuration in self.configurations: + variant_params = list(platform_params) + variant_params.append(self._unix_stagedir(platform, configuration)) + variant_params.append(self._unix_variant(configuration)) + yield variant_params + + @staticmethod + def _address_model(platform): + return f'address-model={platform.get_address_model()}' + + @staticmethod + def _windows_stagedir(platform): + return f'--stagedir=stage/{platform}' + + @staticmethod + def _unix_stagedir(platform, configuration): + return f'--stagedir=stage/{platform}/{configuration}' + + @staticmethod + def _windows_variant(configurations): + variant = ','.join((str(config).lower() for config in configurations)) + return f'variant={variant}' + + @staticmethod + def _unix_variant(configuration): + return f'variant={str(configuration).lower()}' + + +def _parse_args(argv=None): + if argv is None: + argv = sys.argv[1:] + logging.info('Command line arguments: %s', argv) + + parser = argparse.ArgumentParser() + subparsers = parser.add_subparsers(dest='command') + + download = subparsers.add_parser('download', help='download Boost') + download.add_argument('boost_version', metavar='VERSION', + type=BoostVersion.from_string, + help='Boost version (in the MAJOR.MINOR.PATCH format)') + download.add_argument('--build', metavar='DIR', dest='build_dir', + type=os.path.abspath, default='.', + help='destination directory') + + build = subparsers.add_parser('build', help='build Boost libraries') + build.add_argument('--platform', metavar='PLATFORM', + nargs='*', dest='platforms', default=[], + type=_parse_platform, + help='target platform (e.g. x86/x64)') + build.add_argument('--configuration', metavar='CONFIGURATION', + nargs='*', dest='configurations', default=[], + type=_parse_configuration, + help='target configuration (e.g. Debug/Release)') + build.add_argument('boost_dir', metavar='DIR', + help='Boost root directory') + build.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], + help='additional b2 arguments, to be passed verbatim') + + return parser.parse_args(argv) + + +def build(args): + build_params = BoostBuild(args) + boost_dir = BoostDir(args.boost_dir) + boost_dir.build(build_params) + + +def download(args): + with BoostArchive.download(args.boost_version) as archive: + boost_dir = BoostDir.unpack(archive, args.build_dir) + boost_dir.bootstrap() + + +def main(argv=None): + args = _parse_args(argv) + if args.command == 'download': + download(args) + elif args.command == 'build': + build(args) + else: + raise NotImplementedError(f'unsupported command: {args.command}') + + +def _main(argv=None): + _setup_logging() + try: + main(argv) + except Exception as e: + logging.exception(e) + raise + + +if __name__ == '__main__': + _main() diff --git a/boost/build/ci/travis.py b/boost/build/ci/travis.py new file mode 100755 index 0000000..7f791e4 --- /dev/null +++ b/boost/build/ci/travis.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python3 + +# Copyright (c) 2019 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# This is similar to build.py, but auto-fills some parameters for build.py from +# the Travis-defined environment variables. +# Boost is built in $HOME. + +import argparse +import logging +import os +import sys + +from build import BoostVersion, main as build_main + + +def _env(name): + if name not in os.environ: + raise RuntimeError(f'undefined environment variable: {name}') + return os.environ[name] + + +def _check_travis(): + if 'TRAVIS' not in os.environ: + raise RuntimeError('not running on Travis') + + +def _get_build_dir(): + return _env('HOME') + + +def _get_boost_version(): + return _env('travis_boost_version') + + +def _get_configuration(): + return _env('configuration') + + +def _get_platform(): + return _env('platform') + + +def _setup_logging(): + logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(message)s', + level=logging.INFO) + + +def _parse_args(argv=None): + if argv is None: + argv = sys.argv[1:] + logging.info('Command line arguments: %s', argv) + + parser = argparse.ArgumentParser() + parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], + help='additional b2 arguments, to be passed verbatim') + return parser.parse_args(argv) + + +def build_travis(argv=None): + args = _parse_args(argv) + _check_travis() + + version = BoostVersion.from_string(_get_boost_version()) + travis_argv = [ + 'download', + '--build', _get_build_dir(), + '--', str(version) + ] + build_main(travis_argv) + + travis_argv = [ + 'build', + '--configuration', _get_configuration(), + '--platform', _get_platform(), + '--', version.dir_path(_get_build_dir()), + ] + build_main(travis_argv + args.b2_args) + + +def main(argv=None): + _setup_logging() + try: + build_travis(argv) + except Exception as e: + logging.exception(e) + raise + + +if __name__ == '__main__': + main() diff --git a/boost/toolchains/mingw-w64-x64-exe.jam b/boost/toolchains/mingw-w64-x64-exe.jam new file mode 100644 index 0000000..3358a92 --- /dev/null +++ b/boost/toolchains/mingw-w64-x64-exe.jam @@ -0,0 +1 @@ +using gcc : : x86_64-w64-mingw32-g++.exe ; diff --git a/boost/toolchains/mingw-w64-x64.jam b/boost/toolchains/mingw-w64-x64.jam new file mode 100644 index 0000000..799c943 --- /dev/null +++ b/boost/toolchains/mingw-w64-x64.jam @@ -0,0 +1 @@ +using gcc : : x86_64-w64-mingw32-g++ ; diff --git a/boost/toolchains/mingw-w64-x86-exe.jam b/boost/toolchains/mingw-w64-x86-exe.jam new file mode 100644 index 0000000..ad06bf3 --- /dev/null +++ b/boost/toolchains/mingw-w64-x86-exe.jam @@ -0,0 +1 @@ +using gcc : : i686-w64-mingw32-g++.exe ; diff --git a/boost/toolchains/mingw-w64-x86.jam b/boost/toolchains/mingw-w64-x86.jam new file mode 100644 index 0000000..27452b0 --- /dev/null +++ b/boost/toolchains/mingw-w64-x86.jam @@ -0,0 +1 @@ +using gcc : : i686-w64-mingw32-g++ ; diff --git a/ci/.gitignore b/ci/.gitignore deleted file mode 100644 index c18dd8d..0000000 --- a/ci/.gitignore +++ /dev/null @@ -1 +0,0 @@ -__pycache__/ diff --git a/ci/boost/build.py b/ci/boost/build.py deleted file mode 100755 index d535338..0000000 --- a/ci/boost/build.py +++ /dev/null @@ -1,334 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) 2019 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# This script downloads and builds the Boost libraries. -# It's main utility is being able to download & unpack the Boost distribution -# archive in a cross-platform way + setting the correct --stagedir parameter -# value to avoid name clashes. - -import argparse -from contextlib import contextmanager -from enum import Enum -import logging -import os.path -import platform -import re -import shutil -import subprocess -import sys -import tempfile -import urllib.request - - -@contextmanager -def _chdir(path): - cwd = os.getcwd() - os.chdir(path) - try: - yield - finally: - os.chdir(cwd) - - -def _setup_logging(): - logging.basicConfig( - format='%(asctime)s | %(levelname)s | %(message)s', - level=logging.INFO) - - -def _on_windows(): - return platform.system() == 'Windows' - - -def _run_executable(cmd_line): - logging.info('Running executable: %s', cmd_line) - return subprocess.run(cmd_line, check=True) - - -class Platform(Enum): - X86 = 'x86' - X64 = 'x64' - WIN32 = 'Win32' - - def __str__(self): - return self.value - - @staticmethod - def all(): - return (Platform.X86, Platform.X64) - - def get_address_model(self): - if self is Platform.X86: - return 32 - if self is Platform.X64: - return 64 - if self is Platform.WIN32: - return 32 - raise NotImplementedError(f'unsupported platform: {self}') - - -def _parse_platform(s): - try: - return Platform(s) - except ValueError: - raise argparse.ArgumentTypeError(f'invalid platform: {s}') - - -class Configuration(Enum): - DEBUG = 'Debug' - RELEASE = 'Release' - - @staticmethod - def all(): - return tuple(Configuration) - - def __str__(self): - return self.value - - -def _parse_configuration(s): - try: - return Configuration(s) - except ValueError: - raise argparse.ArgumentTypeError(f'invalid configuration: {s}') - - -class BoostVersion: - def __init__(self, major, minor, patch): - self.major = major - self.minor = minor - self.patch = patch - - @staticmethod - def from_string(s): - result = re.match(r'^(\d+)\.(\d+)\.(\d+)$', s) - if result is None: - raise ValueError(f'invalid Boost version: {s}') - return BoostVersion(result.group(1), result.group(2), result.group(3)) - - def __str__(self): - return f'{self.major}.{self.minor}.{self.patch}' - - @property - def archive_ext(self): - return '.tar.gz' - - def dir_path(self, parent_dir): - return os.path.join(parent_dir, self.dir_name) - - @property - def dir_name(self): - return f'boost_{self.major}_{self.minor}_{self.patch}' - - @property - def archive_name(self): - return f'{self.dir_name}{self.archive_ext}' - - def get_download_url(self): - return f'https://dl.bintray.com/boostorg/release/{self}/source/{self.archive_name}' - - -class BoostArchive: - def __init__(self, version, path): - self.version = version - self.path = path - - def __enter__(self): - return self - - def __exit__(self, exc_type, exc_value, traceback): - logging.info('Removing temporary file: %s', self.path) - os.remove(self.path) - - @property - def dir_name(self): - return self.version.dir_name - - @staticmethod - def download(version): - path = None - with tempfile.NamedTemporaryFile(prefix='boost_', suffix=version.archive_ext, delete=False) as dest: - path = dest.name - logging.info('Downloading Boost to: %s', path) - url = version.get_download_url() - logging.info('Download URL: %s', url) - - with urllib.request.urlopen(url) as request: - dest.write(request.read()) - return BoostArchive(version, path) - - -class BoostDir: - def __init__(self, path): - if not os.path.isdir(path): - raise RuntimeError(f"Boost directory doesn't exist: {path}") - self.path = path - - @staticmethod - def unpack(archive, dest): - path = os.path.join(dest, archive.dir_name) - if os.path.exists(path): - raise RuntimeError(f'Boost directory already exists: {path}') - logging.info('Unpacking Boost to: %s', path) - shutil.unpack_archive(archive.path, dest) - return BoostDir(path) - - def _go(self): - return _chdir(self.path) - - def build(self, params): - with self._go(): - self._bootstrap_if_required() - self._b2(params) - - def _bootstrap_if_required(self): - if os.path.isfile(self._b2_path()): - logging.info('Not going to bootstrap, b2 is already there') - return - self.bootstrap() - - def bootstrap(self): - with self._go(): - _run_executable(self._bootstrap_path()) - - def _b2(self, params): - for b2_params in params.enum_b2_params(): - _run_executable([self._b2_path()] + b2_params) - - @staticmethod - def _bootstrap_path(): - return os.path.join('.', BoostDir._bootstrap_name()) - - @staticmethod - def _bootstrap_name(): - ext = '.sh' - if _on_windows(): - ext = '.bat' - return f'bootstrap{ext}' - - @staticmethod - def _b2_path(): - return os.path.join('.', BoostDir._b2_name()) - - @staticmethod - def _b2_name(): - ext = '' - if _on_windows(): - ext = '.exe' - return f'b2{ext}' - - -class BoostBuild: - def __init__(self, args): - self.platforms = args.platforms or Platform.all() - self.configurations = args.configurations or Configuration.all() - self.b2_args = args.b2_args - - def enum_b2_params(self): - for platform in self.platforms: - platform_params = [] - platform_params.append(self._address_model(platform)) - platform_params += self.b2_args - if _on_windows(): - platform_params.append(self._windows_stagedir(platform)) - platform_params.append(self._windows_variant(self.configurations)) - yield platform_params - else: - for configuration in self.configurations: - variant_params = list(platform_params) - variant_params.append(self._unix_stagedir(platform, configuration)) - variant_params.append(self._unix_variant(configuration)) - yield variant_params - - @staticmethod - def _address_model(platform): - return f'address-model={platform.get_address_model()}' - - @staticmethod - def _windows_stagedir(platform): - return f'--stagedir=stage/{platform}' - - @staticmethod - def _unix_stagedir(platform, configuration): - return f'--stagedir=stage/{platform}/{configuration}' - - @staticmethod - def _windows_variant(configurations): - variant = ','.join((str(config).lower() for config in configurations)) - return f'variant={variant}' - - @staticmethod - def _unix_variant(configuration): - return f'variant={str(configuration).lower()}' - - -def _parse_args(argv=None): - if argv is None: - argv = sys.argv[1:] - logging.info('Command line arguments: %s', argv) - - parser = argparse.ArgumentParser() - subparsers = parser.add_subparsers(dest='command') - - download = subparsers.add_parser('download', help='download Boost') - download.add_argument('boost_version', metavar='VERSION', - type=BoostVersion.from_string, - help='Boost version (in the MAJOR.MINOR.PATCH format)') - download.add_argument('--build', metavar='DIR', dest='build_dir', - type=os.path.abspath, default='.', - help='destination directory') - - build = subparsers.add_parser('build', help='build Boost libraries') - build.add_argument('--platform', metavar='PLATFORM', - nargs='*', dest='platforms', default=[], - type=_parse_platform, - help='target platform (e.g. x86/x64)') - build.add_argument('--configuration', metavar='CONFIGURATION', - nargs='*', dest='configurations', default=[], - type=_parse_configuration, - help='target configuration (e.g. Debug/Release)') - build.add_argument('boost_dir', metavar='DIR', - help='Boost root directory') - build.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], - help='additional b2 arguments, to be passed verbatim') - - return parser.parse_args(argv) - - -def build(args): - build_params = BoostBuild(args) - boost_dir = BoostDir(args.boost_dir) - boost_dir.build(build_params) - - -def download(args): - with BoostArchive.download(args.boost_version) as archive: - boost_dir = BoostDir.unpack(archive, args.build_dir) - boost_dir.bootstrap() - - -def main(argv=None): - args = _parse_args(argv) - if args.command == 'download': - download(args) - elif args.command == 'build': - build(args) - else: - raise NotImplementedError(f'unsupported command: {args.command}') - - -def _main(argv=None): - _setup_logging() - try: - main(argv) - except Exception as e: - logging.exception(e) - raise - - -if __name__ == '__main__': - _main() diff --git a/ci/boost/build_travis.py b/ci/boost/build_travis.py deleted file mode 100755 index 7f791e4..0000000 --- a/ci/boost/build_travis.py +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) 2019 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# This is similar to build.py, but auto-fills some parameters for build.py from -# the Travis-defined environment variables. -# Boost is built in $HOME. - -import argparse -import logging -import os -import sys - -from build import BoostVersion, main as build_main - - -def _env(name): - if name not in os.environ: - raise RuntimeError(f'undefined environment variable: {name}') - return os.environ[name] - - -def _check_travis(): - if 'TRAVIS' not in os.environ: - raise RuntimeError('not running on Travis') - - -def _get_build_dir(): - return _env('HOME') - - -def _get_boost_version(): - return _env('travis_boost_version') - - -def _get_configuration(): - return _env('configuration') - - -def _get_platform(): - return _env('platform') - - -def _setup_logging(): - logging.basicConfig( - format='%(asctime)s | %(levelname)s | %(message)s', - level=logging.INFO) - - -def _parse_args(argv=None): - if argv is None: - argv = sys.argv[1:] - logging.info('Command line arguments: %s', argv) - - parser = argparse.ArgumentParser() - parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], - help='additional b2 arguments, to be passed verbatim') - return parser.parse_args(argv) - - -def build_travis(argv=None): - args = _parse_args(argv) - _check_travis() - - version = BoostVersion.from_string(_get_boost_version()) - travis_argv = [ - 'download', - '--build', _get_build_dir(), - '--', str(version) - ] - build_main(travis_argv) - - travis_argv = [ - 'build', - '--configuration', _get_configuration(), - '--platform', _get_platform(), - '--', version.dir_path(_get_build_dir()), - ] - build_main(travis_argv + args.b2_args) - - -def main(argv=None): - _setup_logging() - try: - build_travis(argv) - except Exception as e: - logging.exception(e) - raise - - -if __name__ == '__main__': - main() diff --git a/ci/build.py b/ci/build.py deleted file mode 100755 index 0e352c3..0000000 --- a/ci/build.py +++ /dev/null @@ -1,199 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) 2019 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# This script is used basically to invoke the CMake executable in a -# cross-platform way (provided the platform has Python 3, of course). -# The motivation was to merge my Travis and AppVeyor build scripts (largely -# similar, but written in bash and PowerShell, respectively). - -import argparse -import logging -from enum import Enum -import os -import os.path -import shutil -import subprocess -import sys -import tempfile - - -def _make_tmp_dir(**kwargs): - path = tempfile.mkdtemp(**kwargs) - logging.info('Created temporary directory: %s', path) - return path - - -def _log_rmtree_error(function, path, exc_info): - logging.error("Couldn't remove path '%s': %s", path, exc_info) - - -def _remove_dir(path): - logging.info('Removing directory: %s', path) - shutil.rmtree(path, onerror=_log_rmtree_error) - - -def _run_executable(cmd_line): - logging.info('Running executable: %s', cmd_line) - return subprocess.run(cmd_line, check=True) - - -def _run_cmake(cmake_args): - _run_executable(['cmake'] + cmake_args) - - -class Configuration(Enum): - DEBUG = 'Debug' - RELEASE = 'Release' - - def __str__(self): - return self.value - - -def _parse_configuration(s): - try: - return Configuration(s) - except ValueError: - raise argparse.ArgumentTypeError(f'invalid configuration: {s}') - - -class BuildDir: - def __init__(self, args): - self.path = args.build_dir - self.clean = args.clean_build_dir - self.tmp_dir = self.path is None - if self.tmp_dir: - self.path = self._make_build_dir() - - @staticmethod - def _make_build_dir(): - return _make_tmp_dir(prefix='build_') - - def __enter__(self): - return self - - def __exit__(self, *args): - if self.tmp_dir and self.clean: - _remove_dir(self.path) - - -class GenerationPhase: - def __init__(self, build_dir, args): - self.build_dir = build_dir - self.args = args - - def _cmake_args(self): - return self._to_cmake_args(self.build_dir, self.args) - - @staticmethod - def _to_cmake_args(build_dir, args): - result = [] - if args.install_dir is not None: - result += ['-D', f'CMAKE_INSTALL_PREFIX={args.install_dir}'] - if args.configuration is not None: - result += ['-D', f'CMAKE_BUILD_TYPE={args.configuration}'] - if args.cmake_args is not None: - result += args.cmake_args - result += [f'-B{build_dir.path}', f'-H{args.src_dir}'] - return result - - def run(self): - _run_cmake(self._cmake_args()) - - -class BuildPhase: - def __init__(self, build_dir, args): - self.build_dir = build_dir - self.args = args - - def _cmake_args(self): - return self._to_cmake_args(self.build_dir, self.args) - - @staticmethod - def _to_cmake_args(build_dir, args): - result = ['--build', build_dir.path] - if args.configuration is not None: - result += ['--config', str(args.configuration)] - if args.install_dir is not None: - result += ['--target', 'install'] - return result - - def run(self): - _run_cmake(self._cmake_args()) - - -class CleanPhase: - def __init__(self, build_dir, args): - self.build_dir = build_dir - self.args = args - - def _cmake_args(self): - return self._to_cmake_args(self.build_dir, self.args) - - @staticmethod - def _to_cmake_args(build_dir, args): - result = ['--build', build_dir.path] - if args.configuration is not None: - result += ['--config', str(args.configuration)] - result += ['--target', 'clean'] - return result - - def run(self): - if self.args.clean_build_dir: - _run_cmake(self._cmake_args()) - - -def _parse_args(argv=None): - if argv is None: - argv = sys.argv[1:] - logging.info('Command line arguments: %s', argv) - - parser = argparse.ArgumentParser(description='Build a CMake project') - parser.add_argument('--src', required=True, metavar='DIR', dest='src_dir', - help='source directory') - parser.add_argument('--build', metavar='DIR', dest='build_dir', - help='build directory (temporary directory if not specified)') - parser.add_argument('--install', metavar='DIR', dest='install_dir', - help='install directory') - parser.add_argument('--clean', action='store_true', dest='clean_build_dir', - help='clean the build directory (temporary directory will be removed)') - parser.add_argument('--configuration', metavar='CONFIG', - type=_parse_configuration, default=Configuration.DEBUG, - help='build configuration (i.e. Debug/Release)') - parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', - help='additional CMake arguments, to be passed verbatim') - args = parser.parse_args(argv) - return args - - -def _setup_logging(): - logging.basicConfig( - format='%(asctime)s | %(levelname)s | %(message)s', - level=logging.INFO) - - -def build(argv=None): - args = _parse_args(argv) - with BuildDir(args) as build_dir: - gen_phase = GenerationPhase(build_dir, args) - gen_phase.run() - build_phase = BuildPhase(build_dir, args) - build_phase.run() - clean_phase = CleanPhase(build_dir, args) - clean_phase.run() - - -def main(argv=None): - _setup_logging() - try: - build(argv) - except Exception as e: - logging.exception(e) - raise - - -if __name__ == '__main__': - main() diff --git a/ci/build_appveyor.py b/ci/build_appveyor.py deleted file mode 100755 index 38d0d7e..0000000 --- a/ci/build_appveyor.py +++ /dev/null @@ -1,157 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) 2019 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# This is similar to build.py, but auto-fills some parameters for build.py from -# the AppVeyor-defined environment variables. -# The project is built in C:\Projects\build. - -import argparse -from enum import Enum -import logging -import os -import sys - -from build import build - - -class Image(Enum): - VS_2013 = 'Visual Studio 2013' - VS_2015 = 'Visual Studio 2015' - VS_2017 = 'Visual Studio 2017' - VS_2019 = 'Visual Studio 2019' - - def __str__(self): - return self.value - - -def _parse_image(s): - try: - return Image(s) - except ValueError as e: - raise ValueError(f'unsupported AppVeyor image: {s}') from e - - -class Generator(Enum): - VS_2013 = 'Visual Studio 12 2013' - VS_2015 = 'Visual Studio 14 2015' - VS_2017 = 'Visual Studio 15 2017' - VS_2019 = 'Visual Studio 16 2019' - - def __str__(self): - return self.value - - @staticmethod - def from_image(image): - if image is Image.VS_2013: - return Generator.VS_2013 - if image is Image.VS_2015: - return Generator.VS_2015 - if image is Image.VS_2017: - return Generator.VS_2017 - if image is Image.VS_2019: - return Generator.VS_2019 - raise RuntimeError(f"don't know which generator to use for image: {image}") - - -class Platform(Enum): - x86 = 'Win32' - X64 = 'x64' - - def __str__(self): - return self.value - - -def _parse_platform(s): - try: - return Platform(s) - except ValueError as e: - raise ValueError(f'unsupported AppVeyor platform: {s}') from e - - -def _env(name): - if name not in os.environ: - raise RuntimeError(f'undefined environment variable: {name}') - return os.environ[name] - - -def _check_appveyor(): - if 'APPVEYOR' not in os.environ: - raise RuntimeError('not running on AppVeyor') - - -def _get_src_dir(): - return _env('APPVEYOR_BUILD_FOLDER') - - -def _get_build_dir(): - return R'C:\Projects\build' - - -def _get_generator(): - image = _parse_image(_env('APPVEYOR_BUILD_WORKER_IMAGE')) - return str(Generator.from_image(image)) - - -def _get_platform(): - return str(_parse_platform(_env('PLATFORM'))) - - -def _get_configuration(): - return _env('CONFIGURATION') - - -def _setup_logging(): - logging.basicConfig( - format='%(asctime)s | %(levelname)s | %(message)s', - level=logging.INFO) - - -def _parse_args(argv=None): - if argv is None: - argv = sys.argv[1:] - logging.info('Command line arguments: %s', argv) - - parser = argparse.ArgumentParser(description='Build a CMake project on AppVeyor') - parser.add_argument('--install', metavar='DIR', dest='install_dir', - help='install directory') - parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', default=[], - help='additional CMake arguments, to be passed verbatim') - return parser.parse_args(argv) - - -def build_appveyor(argv=None): - args = _parse_args(argv) - _check_appveyor() - - appveyor_argv = [ - '--src', _get_src_dir(), - '--build', _get_build_dir(), - '--configuration', _get_configuration(), - ] - if args.install_dir is not None: - appveyor_argv += [ - '--install', args.install_dir, - ] - appveyor_argv += [ - '--', - '-G', _get_generator(), - '-A', _get_platform(), - ] - build(appveyor_argv + args.cmake_args) - - -def main(argv=None): - _setup_logging() - try: - build_appveyor(argv) - except Exception as e: - logging.exception(e) - raise - - -if __name__ == '__main__': - main() diff --git a/ci/build_travis.py b/ci/build_travis.py deleted file mode 100755 index 25dbe70..0000000 --- a/ci/build_travis.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) 2019 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# This is similar to build.py, but auto-fills some parameters for build.py from -# the Travis-defined environment variables. -# The project is built in $HOME/build. - -import argparse -import logging -import os -import os.path -import sys - -from build import build - - -def _env(name): - if name not in os.environ: - raise RuntimeError(f'undefined environment variable: {name}') - return os.environ[name] - - -def _check_travis(): - if 'TRAVIS' not in os.environ: - raise RuntimeError('not running on Travis') - - -def _get_src_dir(): - return _env('TRAVIS_BUILD_DIR') - - -def _get_build_dir(): - return os.path.join(_env('HOME'), 'build') - - -def _get_configuration(): - return _env('configuration') - - -def _setup_logging(): - logging.basicConfig( - format='%(asctime)s | %(levelname)s | %(message)s', - level=logging.INFO) - - -def _parse_args(argv=None): - if argv is None: - argv = sys.argv[1:] - logging.info('Command line arguments: %s', argv) - - parser = argparse.ArgumentParser(description='Build a CMake project on Travis') - parser.add_argument('--install', metavar='DIR', dest='install_dir', - help='install directory') - parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', default=[], - help='additional CMake arguments, to be passed verbatim') - return parser.parse_args(argv) - - -def build_travis(argv=None): - args = _parse_args(argv) - _check_travis() - - travis_argv = [ - '--src', _get_src_dir(), - '--build', _get_build_dir(), - '--configuration', _get_configuration(), - ] - if args.install_dir is not None: - travis_argv += [ - '--install', args.install_dir, - ] - travis_argv.append('--') - build(travis_argv + args.cmake_args) - - -def main(argv=None): - _setup_logging() - try: - build_travis(argv) - except Exception as e: - logging.exception(e) - raise - - -if __name__ == '__main__': - main() diff --git a/cmake/build/build.py b/cmake/build/build.py new file mode 100755 index 0000000..0e352c3 --- /dev/null +++ b/cmake/build/build.py @@ -0,0 +1,199 @@ +#!/usr/bin/env python3 + +# Copyright (c) 2019 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# This script is used basically to invoke the CMake executable in a +# cross-platform way (provided the platform has Python 3, of course). +# The motivation was to merge my Travis and AppVeyor build scripts (largely +# similar, but written in bash and PowerShell, respectively). + +import argparse +import logging +from enum import Enum +import os +import os.path +import shutil +import subprocess +import sys +import tempfile + + +def _make_tmp_dir(**kwargs): + path = tempfile.mkdtemp(**kwargs) + logging.info('Created temporary directory: %s', path) + return path + + +def _log_rmtree_error(function, path, exc_info): + logging.error("Couldn't remove path '%s': %s", path, exc_info) + + +def _remove_dir(path): + logging.info('Removing directory: %s', path) + shutil.rmtree(path, onerror=_log_rmtree_error) + + +def _run_executable(cmd_line): + logging.info('Running executable: %s', cmd_line) + return subprocess.run(cmd_line, check=True) + + +def _run_cmake(cmake_args): + _run_executable(['cmake'] + cmake_args) + + +class Configuration(Enum): + DEBUG = 'Debug' + RELEASE = 'Release' + + def __str__(self): + return self.value + + +def _parse_configuration(s): + try: + return Configuration(s) + except ValueError: + raise argparse.ArgumentTypeError(f'invalid configuration: {s}') + + +class BuildDir: + def __init__(self, args): + self.path = args.build_dir + self.clean = args.clean_build_dir + self.tmp_dir = self.path is None + if self.tmp_dir: + self.path = self._make_build_dir() + + @staticmethod + def _make_build_dir(): + return _make_tmp_dir(prefix='build_') + + def __enter__(self): + return self + + def __exit__(self, *args): + if self.tmp_dir and self.clean: + _remove_dir(self.path) + + +class GenerationPhase: + def __init__(self, build_dir, args): + self.build_dir = build_dir + self.args = args + + def _cmake_args(self): + return self._to_cmake_args(self.build_dir, self.args) + + @staticmethod + def _to_cmake_args(build_dir, args): + result = [] + if args.install_dir is not None: + result += ['-D', f'CMAKE_INSTALL_PREFIX={args.install_dir}'] + if args.configuration is not None: + result += ['-D', f'CMAKE_BUILD_TYPE={args.configuration}'] + if args.cmake_args is not None: + result += args.cmake_args + result += [f'-B{build_dir.path}', f'-H{args.src_dir}'] + return result + + def run(self): + _run_cmake(self._cmake_args()) + + +class BuildPhase: + def __init__(self, build_dir, args): + self.build_dir = build_dir + self.args = args + + def _cmake_args(self): + return self._to_cmake_args(self.build_dir, self.args) + + @staticmethod + def _to_cmake_args(build_dir, args): + result = ['--build', build_dir.path] + if args.configuration is not None: + result += ['--config', str(args.configuration)] + if args.install_dir is not None: + result += ['--target', 'install'] + return result + + def run(self): + _run_cmake(self._cmake_args()) + + +class CleanPhase: + def __init__(self, build_dir, args): + self.build_dir = build_dir + self.args = args + + def _cmake_args(self): + return self._to_cmake_args(self.build_dir, self.args) + + @staticmethod + def _to_cmake_args(build_dir, args): + result = ['--build', build_dir.path] + if args.configuration is not None: + result += ['--config', str(args.configuration)] + result += ['--target', 'clean'] + return result + + def run(self): + if self.args.clean_build_dir: + _run_cmake(self._cmake_args()) + + +def _parse_args(argv=None): + if argv is None: + argv = sys.argv[1:] + logging.info('Command line arguments: %s', argv) + + parser = argparse.ArgumentParser(description='Build a CMake project') + parser.add_argument('--src', required=True, metavar='DIR', dest='src_dir', + help='source directory') + parser.add_argument('--build', metavar='DIR', dest='build_dir', + help='build directory (temporary directory if not specified)') + parser.add_argument('--install', metavar='DIR', dest='install_dir', + help='install directory') + parser.add_argument('--clean', action='store_true', dest='clean_build_dir', + help='clean the build directory (temporary directory will be removed)') + parser.add_argument('--configuration', metavar='CONFIG', + type=_parse_configuration, default=Configuration.DEBUG, + help='build configuration (i.e. Debug/Release)') + parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', + help='additional CMake arguments, to be passed verbatim') + args = parser.parse_args(argv) + return args + + +def _setup_logging(): + logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(message)s', + level=logging.INFO) + + +def build(argv=None): + args = _parse_args(argv) + with BuildDir(args) as build_dir: + gen_phase = GenerationPhase(build_dir, args) + gen_phase.run() + build_phase = BuildPhase(build_dir, args) + build_phase.run() + clean_phase = CleanPhase(build_dir, args) + clean_phase.run() + + +def main(argv=None): + _setup_logging() + try: + build(argv) + except Exception as e: + logging.exception(e) + raise + + +if __name__ == '__main__': + main() diff --git a/cmake/build/ci/appveyor.py b/cmake/build/ci/appveyor.py new file mode 100755 index 0000000..38d0d7e --- /dev/null +++ b/cmake/build/ci/appveyor.py @@ -0,0 +1,157 @@ +#!/usr/bin/env python3 + +# Copyright (c) 2019 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# This is similar to build.py, but auto-fills some parameters for build.py from +# the AppVeyor-defined environment variables. +# The project is built in C:\Projects\build. + +import argparse +from enum import Enum +import logging +import os +import sys + +from build import build + + +class Image(Enum): + VS_2013 = 'Visual Studio 2013' + VS_2015 = 'Visual Studio 2015' + VS_2017 = 'Visual Studio 2017' + VS_2019 = 'Visual Studio 2019' + + def __str__(self): + return self.value + + +def _parse_image(s): + try: + return Image(s) + except ValueError as e: + raise ValueError(f'unsupported AppVeyor image: {s}') from e + + +class Generator(Enum): + VS_2013 = 'Visual Studio 12 2013' + VS_2015 = 'Visual Studio 14 2015' + VS_2017 = 'Visual Studio 15 2017' + VS_2019 = 'Visual Studio 16 2019' + + def __str__(self): + return self.value + + @staticmethod + def from_image(image): + if image is Image.VS_2013: + return Generator.VS_2013 + if image is Image.VS_2015: + return Generator.VS_2015 + if image is Image.VS_2017: + return Generator.VS_2017 + if image is Image.VS_2019: + return Generator.VS_2019 + raise RuntimeError(f"don't know which generator to use for image: {image}") + + +class Platform(Enum): + x86 = 'Win32' + X64 = 'x64' + + def __str__(self): + return self.value + + +def _parse_platform(s): + try: + return Platform(s) + except ValueError as e: + raise ValueError(f'unsupported AppVeyor platform: {s}') from e + + +def _env(name): + if name not in os.environ: + raise RuntimeError(f'undefined environment variable: {name}') + return os.environ[name] + + +def _check_appveyor(): + if 'APPVEYOR' not in os.environ: + raise RuntimeError('not running on AppVeyor') + + +def _get_src_dir(): + return _env('APPVEYOR_BUILD_FOLDER') + + +def _get_build_dir(): + return R'C:\Projects\build' + + +def _get_generator(): + image = _parse_image(_env('APPVEYOR_BUILD_WORKER_IMAGE')) + return str(Generator.from_image(image)) + + +def _get_platform(): + return str(_parse_platform(_env('PLATFORM'))) + + +def _get_configuration(): + return _env('CONFIGURATION') + + +def _setup_logging(): + logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(message)s', + level=logging.INFO) + + +def _parse_args(argv=None): + if argv is None: + argv = sys.argv[1:] + logging.info('Command line arguments: %s', argv) + + parser = argparse.ArgumentParser(description='Build a CMake project on AppVeyor') + parser.add_argument('--install', metavar='DIR', dest='install_dir', + help='install directory') + parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', default=[], + help='additional CMake arguments, to be passed verbatim') + return parser.parse_args(argv) + + +def build_appveyor(argv=None): + args = _parse_args(argv) + _check_appveyor() + + appveyor_argv = [ + '--src', _get_src_dir(), + '--build', _get_build_dir(), + '--configuration', _get_configuration(), + ] + if args.install_dir is not None: + appveyor_argv += [ + '--install', args.install_dir, + ] + appveyor_argv += [ + '--', + '-G', _get_generator(), + '-A', _get_platform(), + ] + build(appveyor_argv + args.cmake_args) + + +def main(argv=None): + _setup_logging() + try: + build_appveyor(argv) + except Exception as e: + logging.exception(e) + raise + + +if __name__ == '__main__': + main() diff --git a/cmake/build/ci/travis.py b/cmake/build/ci/travis.py new file mode 100755 index 0000000..25dbe70 --- /dev/null +++ b/cmake/build/ci/travis.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 + +# Copyright (c) 2019 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# This is similar to build.py, but auto-fills some parameters for build.py from +# the Travis-defined environment variables. +# The project is built in $HOME/build. + +import argparse +import logging +import os +import os.path +import sys + +from build import build + + +def _env(name): + if name not in os.environ: + raise RuntimeError(f'undefined environment variable: {name}') + return os.environ[name] + + +def _check_travis(): + if 'TRAVIS' not in os.environ: + raise RuntimeError('not running on Travis') + + +def _get_src_dir(): + return _env('TRAVIS_BUILD_DIR') + + +def _get_build_dir(): + return os.path.join(_env('HOME'), 'build') + + +def _get_configuration(): + return _env('configuration') + + +def _setup_logging(): + logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(message)s', + level=logging.INFO) + + +def _parse_args(argv=None): + if argv is None: + argv = sys.argv[1:] + logging.info('Command line arguments: %s', argv) + + parser = argparse.ArgumentParser(description='Build a CMake project on Travis') + parser.add_argument('--install', metavar='DIR', dest='install_dir', + help='install directory') + parser.add_argument('cmake_args', nargs='*', metavar='CMAKE_ARG', default=[], + help='additional CMake arguments, to be passed verbatim') + return parser.parse_args(argv) + + +def build_travis(argv=None): + args = _parse_args(argv) + _check_travis() + + travis_argv = [ + '--src', _get_src_dir(), + '--build', _get_build_dir(), + '--configuration', _get_configuration(), + ] + if args.install_dir is not None: + travis_argv += [ + '--install', args.install_dir, + ] + travis_argv.append('--') + build(travis_argv + args.cmake_args) + + +def main(argv=None): + _setup_logging() + try: + build_travis(argv) + except Exception as e: + logging.exception(e) + raise + + +if __name__ == '__main__': + main() diff --git a/cmake/common.cmake b/cmake/common.cmake new file mode 100644 index 0000000..447f340 --- /dev/null +++ b/cmake/common.cmake @@ -0,0 +1,212 @@ +# Copyright (c) 2017 Egor Tensin +# This file is part of the "cmake-common" project. +# For details, see https://github.com/egor-tensin/cmake-common. +# Distributed under the MIT License. + +# It's a CMake code snippet I use in all of my CMake projects. +# It makes targets link the runtime statically by default, strips debug symbols +# in release builds and sets a couple of useful compilation options. + +# Add this to the top-level CMakeLists.txt (unless a higher version has already +# been specified): +# +# cmake_minimum_required(VERSION 3.1) + +# Without this policy set, this line: +# +# if(toolset STREQUAL "MSVC") +# +# evaluates to false even when using Visual Studio (since MSVC is a predefined +# variable; it's completely bonkers). +if(NOT POLICY CMP0054) + message(FATAL_ERROR "common.cmake uses CMP0054, which is unsupported by this CMake version") +endif() +cmake_policy(SET CMP0054 NEW) + +# Toolset identification: + +if(CMAKE_C_COMPILER_ID) + set(toolset "${CMAKE_C_COMPILER_ID}") +elseif(CMAKE_CXX_COMPILER_ID) + set(toolset "${CMAKE_CXX_COMPILER_ID}") +else() + set(toolset "unknown") +endif() + +if(toolset STREQUAL "GNU") + set(is_gcc ON) +elseif(toolset STREQUAL "MSVC") + set(is_msvc ON) +else() + message(WARNING "Unrecognized toolset: ${toolset}") +endif() + +# User-defined switches: + +set(default_value ON) +get_directory_property(parent_dir PARENT_DIRECTORY) +if(parent_dir) + set(default_value OFF) +endif() + +if(NOT DEFINED CC_CXX_STANDARD) + set(CC_CXX_STANDARD "14" CACHE STRING "C++ standard version") +endif() +if(NOT DEFINED CC_BEST_PRACTICES) + option(CC_BEST_PRACTICES "Set common compiler options" "${default_value}") +endif() +if(NOT DEFINED CC_WINDOWS_DEF) + option(CC_WINDOWS_DEF "Define useful Windows macros" "${default_value}") +endif() +if(NOT DEFINED CC_STATIC_RUNTIME) + set(static_runtime_default_value "${default_value}") + if(UNIX) + set(static_runtime_default_value OFF) + endif() + option(CC_STATIC_RUNTIME "Link the runtime statically" "${static_runtime_default_value}") +endif() +if(NOT DEFINED CC_STRIP_SYMBOLS) + option(CC_STRIP_SYMBOLS "Strip debug symbols" "${default_value}") +endif() + +option(Boost_USE_STATIC_LIBS "Use the static Boost libraries" "${default_value}") +option(Boost_USE_STATIC_RUNTIME "Use Boost libraries linked to the runtime statically" "${CC_STATIC_RUNTIME}") + +message(STATUS "Toolset: ${toolset}") +message(STATUS "C++ standard: ${CC_CXX_STANDARD}") +message(STATUS "Set common compiler options: ${CC_BEST_PRACTICES}") +message(STATUS "Define useful Windows macros: ${CC_WINDOWS_DEF}") +message(STATUS "Use the static Boost libraries: ${Boost_USE_STATIC_LIBS}") +message(STATUS "Link the runtime statically: ${CC_STATIC_RUNTIME}") +message(STATUS "Strip symbols: ${CC_STRIP_SYMBOLS}") + +# C++ standard version: + +set(CMAKE_CXX_STANDARD "${CC_CXX_STANDARD}") +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +# Common compiler options routines: + +function(_cc_best_practices_msvc target) + set(compile_options /MP /W4) + get_target_property(target_type "${target}" TYPE) + if(NOT target_type STREQUAL "INTERFACE_LIBRARY") + target_compile_options("${target}" PRIVATE ${compile_options}) + endif() +endfunction() + +function(_cc_best_practices_gcc target) + set(compile_options -Wall -Wextra) + get_target_property(target_type "${target}" TYPE) + if(NOT target_type STREQUAL "INTERFACE_LIBRARY") + target_compile_options("${target}" PRIVATE ${compile_options}) + endif() +endfunction() + +function(_cc_best_practices target) + if(is_msvc) + _cc_best_practices_msvc("${target}") + elseif(is_gcc) + _cc_best_practices_gcc("${target}") + endif() +endfunction() + +# Useful Windows macros routines: + +function(_cc_common_windows_definitions target) + set(compile_definitions WIN32_LEAN_AND_MEAN NOMINMAX) + get_target_property(target_type "${target}" TYPE) + if(target_type STREQUAL "INTERFACE_LIBRARY") + target_compile_definitions("${target}" INTERFACE ${compile_definitions}) + else() + target_compile_definitions("${target}" PRIVATE ${compile_definitions}) + endif() +endfunction() + +# Static runtime routines: + +function(_cc_static_runtime_msvc target) + get_target_property(target_type "${target}" TYPE) + if(NOT target_type STREQUAL "INTERFACE_LIBRARY") + target_compile_options("${target}" PRIVATE + $<$:/MTd> + $<$>:/MT>) + endif() +endfunction() + +function(_cc_static_runtime_gcc target) + get_target_property(target_type "${target}" TYPE) + if(target_type STREQUAL "EXECUTABLE") + # This causes issues with mixing keyword- and plain- versions of + # target_link_libraries: + #target_link_libraries("${target}" PRIVATE -static) + + set_property(TARGET "${target}" APPEND_STRING PROPERTY LINK_FLAGS " -static") + + # Or (haven't tested this), if CMake 3.13+ is used: + #target_link_options("${target}" PRIVATE -static) + endif() +endfunction() + +function(_cc_static_runtime target) + if(is_msvc) + _cc_static_runtime_msvc("${target}") + elseif(is_gcc) + _cc_static_runtime_gcc("${target}") + endif() +endfunction() + +# Symbol stripping routines: + +function(_cc_strip_symbols_gcc target) + get_target_property(target_type "${target}" TYPE) + if(NOT target_type STREQUAL "INTERFACE_LIBRARY") + set(release_build $,$>) + if(release_build) + # This causes issues with mixing keyword- and plain- versions of + # target_link_libraries: + #target_link_libraries("${target}" PRIVATE -s) + + set_property(TARGET "${target}" APPEND_STRING PROPERTY LINK_FLAGS " -s") + endif() + endif() +endfunction() + +function(_cc_strip_symbols target) + if(is_gcc) + _cc_strip_symbols_gcc("${target}") + endif() +endfunction() + +# Main macros: + +function(_cc_apply_settings target) + if(TARGET "${target}") + get_target_property(target_imported "${target}" IMPORTED) + if(NOT target_imported) + if(CC_BEST_PRACTICES) + _cc_best_practices("${target}") + endif() + if(CC_WINDOWS_DEF) + _cc_common_windows_definitions("${target}") + endif() + if(CC_STRIP_SYMBOLS) + _cc_strip_symbols("${target}") + endif() + if(CC_STATIC_RUNTIME) + _cc_static_runtime("${target}") + endif() + endif() + endif() +endfunction() + +macro(add_executable target) + _add_executable(${ARGV}) + _cc_apply_settings("${target}") +endmacro() + +macro(add_library target) + _add_library(${ARGV}) + _cc_apply_settings("${target}") +endmacro() diff --git a/cmake/toolchains/README.md b/cmake/toolchains/README.md new file mode 100644 index 0000000..0e46391 --- /dev/null +++ b/cmake/toolchains/README.md @@ -0,0 +1,3 @@ +Use the toolchain files by passing something like +`-DCMAKE_TOOLCHAIN_FILE=path/to/cmake-common/toolchains/toolchain.cmake` to +`cmake`. diff --git a/cmake/toolchains/gcc-x64.cmake b/cmake/toolchains/gcc-x64.cmake new file mode 100644 index 0000000..2f7019e --- /dev/null +++ b/cmake/toolchains/gcc-x64.cmake @@ -0,0 +1,4 @@ +set(CMAKE_C_COMPILER gcc) +set(CMAKE_C_FLAGS -m64) +set(CMAKE_CXX_COMIPLER g++) +set(CMAKE_CXX_FLAGS -m64) diff --git a/cmake/toolchains/gcc-x86.cmake b/cmake/toolchains/gcc-x86.cmake new file mode 100644 index 0000000..e2e84be --- /dev/null +++ b/cmake/toolchains/gcc-x86.cmake @@ -0,0 +1,4 @@ +set(CMAKE_C_COMPILER gcc) +set(CMAKE_C_FLAGS -m32) +set(CMAKE_CXX_COMIPLER g++) +set(CMAKE_CXX_FLAGS -m32) diff --git a/cmake/toolchains/mingw-w64-x64.cmake b/cmake/toolchains/mingw-w64-x64.cmake new file mode 100644 index 0000000..6009edf --- /dev/null +++ b/cmake/toolchains/mingw-w64-x64.cmake @@ -0,0 +1,3 @@ +set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc) +set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++) +set(CMAKE_RC_COMILER x86_64-w64-mingw32-windres) diff --git a/cmake/toolchains/mingw-w64-x86.cmake b/cmake/toolchains/mingw-w64-x86.cmake new file mode 100644 index 0000000..b0c717f --- /dev/null +++ b/cmake/toolchains/mingw-w64-x86.cmake @@ -0,0 +1,3 @@ +set(CMAKE_C_COMPILER i686-w64-mingw32-gcc) +set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++) +set(CMAKE_RC_COMILER i686-w64-mingw32-windres) diff --git a/common.cmake b/common.cmake deleted file mode 100644 index 447f340..0000000 --- a/common.cmake +++ /dev/null @@ -1,212 +0,0 @@ -# Copyright (c) 2017 Egor Tensin -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -# It's a CMake code snippet I use in all of my CMake projects. -# It makes targets link the runtime statically by default, strips debug symbols -# in release builds and sets a couple of useful compilation options. - -# Add this to the top-level CMakeLists.txt (unless a higher version has already -# been specified): -# -# cmake_minimum_required(VERSION 3.1) - -# Without this policy set, this line: -# -# if(toolset STREQUAL "MSVC") -# -# evaluates to false even when using Visual Studio (since MSVC is a predefined -# variable; it's completely bonkers). -if(NOT POLICY CMP0054) - message(FATAL_ERROR "common.cmake uses CMP0054, which is unsupported by this CMake version") -endif() -cmake_policy(SET CMP0054 NEW) - -# Toolset identification: - -if(CMAKE_C_COMPILER_ID) - set(toolset "${CMAKE_C_COMPILER_ID}") -elseif(CMAKE_CXX_COMPILER_ID) - set(toolset "${CMAKE_CXX_COMPILER_ID}") -else() - set(toolset "unknown") -endif() - -if(toolset STREQUAL "GNU") - set(is_gcc ON) -elseif(toolset STREQUAL "MSVC") - set(is_msvc ON) -else() - message(WARNING "Unrecognized toolset: ${toolset}") -endif() - -# User-defined switches: - -set(default_value ON) -get_directory_property(parent_dir PARENT_DIRECTORY) -if(parent_dir) - set(default_value OFF) -endif() - -if(NOT DEFINED CC_CXX_STANDARD) - set(CC_CXX_STANDARD "14" CACHE STRING "C++ standard version") -endif() -if(NOT DEFINED CC_BEST_PRACTICES) - option(CC_BEST_PRACTICES "Set common compiler options" "${default_value}") -endif() -if(NOT DEFINED CC_WINDOWS_DEF) - option(CC_WINDOWS_DEF "Define useful Windows macros" "${default_value}") -endif() -if(NOT DEFINED CC_STATIC_RUNTIME) - set(static_runtime_default_value "${default_value}") - if(UNIX) - set(static_runtime_default_value OFF) - endif() - option(CC_STATIC_RUNTIME "Link the runtime statically" "${static_runtime_default_value}") -endif() -if(NOT DEFINED CC_STRIP_SYMBOLS) - option(CC_STRIP_SYMBOLS "Strip debug symbols" "${default_value}") -endif() - -option(Boost_USE_STATIC_LIBS "Use the static Boost libraries" "${default_value}") -option(Boost_USE_STATIC_RUNTIME "Use Boost libraries linked to the runtime statically" "${CC_STATIC_RUNTIME}") - -message(STATUS "Toolset: ${toolset}") -message(STATUS "C++ standard: ${CC_CXX_STANDARD}") -message(STATUS "Set common compiler options: ${CC_BEST_PRACTICES}") -message(STATUS "Define useful Windows macros: ${CC_WINDOWS_DEF}") -message(STATUS "Use the static Boost libraries: ${Boost_USE_STATIC_LIBS}") -message(STATUS "Link the runtime statically: ${CC_STATIC_RUNTIME}") -message(STATUS "Strip symbols: ${CC_STRIP_SYMBOLS}") - -# C++ standard version: - -set(CMAKE_CXX_STANDARD "${CC_CXX_STANDARD}") -set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CMAKE_CXX_EXTENSIONS OFF) - -# Common compiler options routines: - -function(_cc_best_practices_msvc target) - set(compile_options /MP /W4) - get_target_property(target_type "${target}" TYPE) - if(NOT target_type STREQUAL "INTERFACE_LIBRARY") - target_compile_options("${target}" PRIVATE ${compile_options}) - endif() -endfunction() - -function(_cc_best_practices_gcc target) - set(compile_options -Wall -Wextra) - get_target_property(target_type "${target}" TYPE) - if(NOT target_type STREQUAL "INTERFACE_LIBRARY") - target_compile_options("${target}" PRIVATE ${compile_options}) - endif() -endfunction() - -function(_cc_best_practices target) - if(is_msvc) - _cc_best_practices_msvc("${target}") - elseif(is_gcc) - _cc_best_practices_gcc("${target}") - endif() -endfunction() - -# Useful Windows macros routines: - -function(_cc_common_windows_definitions target) - set(compile_definitions WIN32_LEAN_AND_MEAN NOMINMAX) - get_target_property(target_type "${target}" TYPE) - if(target_type STREQUAL "INTERFACE_LIBRARY") - target_compile_definitions("${target}" INTERFACE ${compile_definitions}) - else() - target_compile_definitions("${target}" PRIVATE ${compile_definitions}) - endif() -endfunction() - -# Static runtime routines: - -function(_cc_static_runtime_msvc target) - get_target_property(target_type "${target}" TYPE) - if(NOT target_type STREQUAL "INTERFACE_LIBRARY") - target_compile_options("${target}" PRIVATE - $<$:/MTd> - $<$>:/MT>) - endif() -endfunction() - -function(_cc_static_runtime_gcc target) - get_target_property(target_type "${target}" TYPE) - if(target_type STREQUAL "EXECUTABLE") - # This causes issues with mixing keyword- and plain- versions of - # target_link_libraries: - #target_link_libraries("${target}" PRIVATE -static) - - set_property(TARGET "${target}" APPEND_STRING PROPERTY LINK_FLAGS " -static") - - # Or (haven't tested this), if CMake 3.13+ is used: - #target_link_options("${target}" PRIVATE -static) - endif() -endfunction() - -function(_cc_static_runtime target) - if(is_msvc) - _cc_static_runtime_msvc("${target}") - elseif(is_gcc) - _cc_static_runtime_gcc("${target}") - endif() -endfunction() - -# Symbol stripping routines: - -function(_cc_strip_symbols_gcc target) - get_target_property(target_type "${target}" TYPE) - if(NOT target_type STREQUAL "INTERFACE_LIBRARY") - set(release_build $,$>) - if(release_build) - # This causes issues with mixing keyword- and plain- versions of - # target_link_libraries: - #target_link_libraries("${target}" PRIVATE -s) - - set_property(TARGET "${target}" APPEND_STRING PROPERTY LINK_FLAGS " -s") - endif() - endif() -endfunction() - -function(_cc_strip_symbols target) - if(is_gcc) - _cc_strip_symbols_gcc("${target}") - endif() -endfunction() - -# Main macros: - -function(_cc_apply_settings target) - if(TARGET "${target}") - get_target_property(target_imported "${target}" IMPORTED) - if(NOT target_imported) - if(CC_BEST_PRACTICES) - _cc_best_practices("${target}") - endif() - if(CC_WINDOWS_DEF) - _cc_common_windows_definitions("${target}") - endif() - if(CC_STRIP_SYMBOLS) - _cc_strip_symbols("${target}") - endif() - if(CC_STATIC_RUNTIME) - _cc_static_runtime("${target}") - endif() - endif() - endif() -endfunction() - -macro(add_executable target) - _add_executable(${ARGV}) - _cc_apply_settings("${target}") -endmacro() - -macro(add_library target) - _add_library(${ARGV}) - _cc_apply_settings("${target}") -endmacro() diff --git a/toolchains/README.md b/toolchains/README.md deleted file mode 100644 index 0e46391..0000000 --- a/toolchains/README.md +++ /dev/null @@ -1,3 +0,0 @@ -Use the toolchain files by passing something like -`-DCMAKE_TOOLCHAIN_FILE=path/to/cmake-common/toolchains/toolchain.cmake` to -`cmake`. diff --git a/toolchains/boost/mingw-w64-x64-exe.jam b/toolchains/boost/mingw-w64-x64-exe.jam deleted file mode 100644 index 3358a92..0000000 --- a/toolchains/boost/mingw-w64-x64-exe.jam +++ /dev/null @@ -1 +0,0 @@ -using gcc : : x86_64-w64-mingw32-g++.exe ; diff --git a/toolchains/boost/mingw-w64-x64.jam b/toolchains/boost/mingw-w64-x64.jam deleted file mode 100644 index 799c943..0000000 --- a/toolchains/boost/mingw-w64-x64.jam +++ /dev/null @@ -1 +0,0 @@ -using gcc : : x86_64-w64-mingw32-g++ ; diff --git a/toolchains/boost/mingw-w64-x86-exe.jam b/toolchains/boost/mingw-w64-x86-exe.jam deleted file mode 100644 index ad06bf3..0000000 --- a/toolchains/boost/mingw-w64-x86-exe.jam +++ /dev/null @@ -1 +0,0 @@ -using gcc : : i686-w64-mingw32-g++.exe ; diff --git a/toolchains/boost/mingw-w64-x86.jam b/toolchains/boost/mingw-w64-x86.jam deleted file mode 100644 index 27452b0..0000000 --- a/toolchains/boost/mingw-w64-x86.jam +++ /dev/null @@ -1 +0,0 @@ -using gcc : : i686-w64-mingw32-g++ ; diff --git a/toolchains/gcc-x64.cmake b/toolchains/gcc-x64.cmake deleted file mode 100644 index 2f7019e..0000000 --- a/toolchains/gcc-x64.cmake +++ /dev/null @@ -1,4 +0,0 @@ -set(CMAKE_C_COMPILER gcc) -set(CMAKE_C_FLAGS -m64) -set(CMAKE_CXX_COMIPLER g++) -set(CMAKE_CXX_FLAGS -m64) diff --git a/toolchains/gcc-x86.cmake b/toolchains/gcc-x86.cmake deleted file mode 100644 index e2e84be..0000000 --- a/toolchains/gcc-x86.cmake +++ /dev/null @@ -1,4 +0,0 @@ -set(CMAKE_C_COMPILER gcc) -set(CMAKE_C_FLAGS -m32) -set(CMAKE_CXX_COMIPLER g++) -set(CMAKE_CXX_FLAGS -m32) diff --git a/toolchains/mingw-w64-x64.cmake b/toolchains/mingw-w64-x64.cmake deleted file mode 100644 index 6009edf..0000000 --- a/toolchains/mingw-w64-x64.cmake +++ /dev/null @@ -1,3 +0,0 @@ -set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc) -set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++) -set(CMAKE_RC_COMILER x86_64-w64-mingw32-windres) diff --git a/toolchains/mingw-w64-x86.cmake b/toolchains/mingw-w64-x86.cmake deleted file mode 100644 index b0c717f..0000000 --- a/toolchains/mingw-w64-x86.cmake +++ /dev/null @@ -1,3 +0,0 @@ -set(CMAKE_C_COMPILER i686-w64-mingw32-gcc) -set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++) -set(CMAKE_RC_COMILER i686-w64-mingw32-windres) -- cgit v1.2.3