-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor threading in tests to use C++11 std::thread and update build…
… scripts for CMake
- Loading branch information
1 parent
e92f6e2
commit bb1b591
Showing
5 changed files
with
149 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
#!/bin/zsh | ||
# -*- vim:fenc=utf-8:et:sw=2:ts=2:sts=2 | ||
# | ||
# Copyright (c) 2014-2024 Enrico M. Crisostomo | ||
# | ||
# This program is free software; you can redistribute it and/or modify it under | ||
# the terms of the GNU General Public License as published by the Free Software | ||
# Foundation; either version 3, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
# details. | ||
# | ||
# You should have received a copy of the GNU General Public License along with | ||
# this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
setopt local_options | ||
setopt local_traps | ||
unsetopt glob_subst | ||
|
||
set -o errexit | ||
set -o nounset | ||
|
||
PROGNAME=${0:t} | ||
PROGDIR=${0:h} | ||
BUG_REPORT=enrico.m.crisostomo@gmail.com | ||
PACKAGE_VERSION=1.0.0 | ||
typeset -r LIBFSWATCH_DOC_DIR=libfswatch/doc/doxygen | ||
typeset -r FSWATCH_DOC_DIR=fswatch/doc | ||
typeset -i ARGS_PROCESSED=0 | ||
typeset -a help_flag | ||
typeset -a version_flag | ||
typeset -a configure_opts | ||
REQUIRED_PROGS=( git ) | ||
|
||
for p in ${REQUIRED_PROGS} | ||
do | ||
command -v ${p} > /dev/null 2>&1 || | ||
{ | ||
>&2 print -- Cannot find required program: ${p} | ||
exit 1 | ||
} | ||
done | ||
|
||
print_version() | ||
{ | ||
print -- "${PROGNAME} ${PACKAGE_VERSION}" | ||
print -- "Copyright (C) 2024 Enrico M. Crisostomo" | ||
print -- "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>." | ||
print -- "This is free software: you are free to change and redistribute it." | ||
print -- "There is NO WARRANTY, to the extent permitted by law." | ||
print -- "Written by Enrico M. Crisostomo" | ||
} | ||
|
||
print_usage() | ||
{ | ||
print -- "${PROGNAME}" | ||
print -- "Usage:" | ||
print -- "${PROGNAME}" | ||
print -- "Build the package from scratch using CMake:" | ||
print -- " - Clean the source tree using: git clean -xfd" | ||
print -- " - Bootstrap the CMake build in build/" | ||
print -- " - Make the package" | ||
print -- "Options:" | ||
print -- " --version Print the program version." | ||
} | ||
|
||
parse_opts() | ||
{ | ||
while getopts ":" opt | ||
do | ||
case $opt in | ||
\?) | ||
>&2 print -- Invalid option -${OPTARG}. | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
|
||
ARGS_PROCESSED=$((OPTIND - 1)) | ||
} | ||
|
||
# main | ||
zparseopts -D \ | ||
h=help_flag -help=help_flag \ | ||
-version=version_flag | ||
|
||
if (( ${+help_flag[1]} > 0 )) | ||
then | ||
print_usage | ||
exit 0 | ||
fi | ||
|
||
if (( ${+version_flag[1]} > 0 )) | ||
then | ||
print_version | ||
exit 0 | ||
fi | ||
|
||
parse_opts $* && shift ${ARGS_PROCESSED} | ||
|
||
(( $# == 0 )) || | ||
{ | ||
>&2 print -- "Invalid number of arguments." | ||
exit 1 | ||
} | ||
|
||
print -- "This script will clean up the source tree, bootstrap the CMake build," | ||
print -- "and build fswatch. Are you sure you want to continue? [y/N]" | ||
read -k1 -q | ||
|
||
if [[ ${REPLY} == [yY] ]] ; then | ||
print -- "Cleaning up the source tree..." | ||
git clean -xfd | ||
print -- "Bootstrapping the CMake build..." | ||
mkdir build | ||
print -- "Configuring the package..." | ||
mkdir -p build | ||
cd build | ||
cmake .. | ||
print -- "Building the package..." | ||
make | ||
print -- "Running the tests..." | ||
make test | ||
print -- "Build was successful." | ||
else | ||
print -- "Aborted." | ||
fi | ||
|
||
# Local variables: | ||
# coding: utf-8 | ||
# mode: sh | ||
# eval: (sh-set-shell "zsh") | ||
# tab-width: 2 | ||
# indent-tabs-mode: nil | ||
# sh-basic-offset: 2 | ||
# sh-indentation: 2 | ||
# End: |
This file contains 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
This file contains 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
This file contains 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