Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
2f62759d
Unverified
Commit
2f62759d
authored
Aug 17, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Before split-out of libpdbxpp
parent
cf9ec46a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
34 deletions
+9
-34
.travis.yml
+0
-33
CMakeLists.txt
+7
-0
libcifpp.pc.in
+2
-1
No files found.
.travis.yml
deleted
100644 → 0
View file @
cf9ec46a
language
:
cpp
os
:
-
linux
-
osx
dist
:
focal
osx_image
:
-
xcode12
compiler
:
-
gcc
-
clang
addons
:
apt
:
packages
:
-
libboost-all-dev
before_install
:
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install make; fi
script
:
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then ./configure --disable-shared --disable-revision --disable-download-ccd ; else ./configure --disable-revision --disable-download-ccd ; fi
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then gmake ; else make ; fi
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then gmake test ; else make test ; fi
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then sudo gmake install ; else sudo make install; fi
# jobs:
# allow_failures:
# - os: osx
CMakeLists.txt
View file @
2f62759d
...
...
@@ -156,6 +156,13 @@ try_run(STD_REGEX_RUNNING STD_REGEX_COMPILING
if
(
STD_REGEX_RUNNING STREQUAL FAILED_TO_RUN
)
message
(
WARNING
"You are probably trying to compile using the g++ standard library which contains a crashing std::regex implementation. Will try to use boost::regex instead"
)
# Test to see if the submodule was loaded
find_file
(
HAVE_BOOST_REGEX_HPP regex.hpp PATHS
${
PROJECT_SOURCE_DIR
}
/regex/include/boost NO_DEFAULT_PATH
)
if
(
NOT HAVE_BOOST_REGEX_HPP
)
message
(
FATAL_ERROR
"The submodule regex was not loaded, please run git submodule update --init "
)
endif
()
set
(
BOOST_REGEX_STANDALONE ON
)
add_subdirectory
(
regex
)
endif
()
...
...
libcifpp.pc.in
View file @
2f62759d
...
...
@@ -8,5 +8,6 @@ Name: libcifpp
Description:
C++
library
for
the
manipulation
of
mmCIF
files
.
Version:
@PACKAGE_VERSION@
Libs:
-L$
{
libdir
}
-lcifpp
-lz
Requires
.
private:
zlib,
liblzma
Libs:
-L$
{
libdir
}
-lcifpp
Cflags:
-I$
{
includedir
}
-pthread
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment