Skip to content

Commit

Permalink
Sync to template
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 14, 2023
1 parent 7075e3d commit 0f209e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci_support/run_docker_linux.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ uid=$1
gid=$2
if test -n "${uid}" -a -n "${gid}"
then
sudo cp -r ~/.local/share/*/doc/html /io
sudo cp -r ~/.local/share/doc/*/html /io
sudo chown -R ${uid}:${gid} /io/html
fi
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option (BUILD_SHARED_LIBS "Build shared libraries"
# By default, build in Release mode. Must appear before project() command
set( CMAKE_BUILD_TYPE Release CACHE STRING "Build type")

project (OTRobOpt)
project (otrobopt)

string (TOLOWER ${CMAKE_PROJECT_NAME} PACKAGE_NAME)

Expand Down Expand Up @@ -52,7 +52,7 @@ set (OTROBOPT_INCLUDE_PATH include)
set (OTROBOPT_SWIG_INCLUDE_DIRS ${OTROBOPT_INCLUDE_PATH}/${PACKAGE_NAME}/swig)
set (OTROBOPT_DATA_PATH share)
set (OTROBOPT_CONFIG_CMAKE_PATH ${CMAKE_INSTALL_LIBDIR}/cmake/otrobopt)
set (OTROBOPT_DOC_PATH share/${PACKAGE_NAME}/doc)
set (OTROBOPT_DOC_PATH ${CMAKE_INSTALL_DOCDIR})

set (CMAKE_CXX_STANDARD 11)

Expand Down

0 comments on commit 0f209e9

Please sign in to comment.