Skip to content

Commit

Permalink
Merge pull request #16 from thclark/v0.0.3
Browse files Browse the repository at this point in the history
V0.0.3
  • Loading branch information
thclark authored Jul 30, 2020
2 parents 9ee61c0 + e076a4f commit 458d26f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")


# Set make options
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set (CMAKE_CXX_STANDARD 11)
set(CMAKE_VERBOSE_MAKEFILE ON)

# Lets glog play more nicely with Windows
IF(CMAKE_SYSTEM_NAME STREQUAL Windows)
add_definitions(-DGLOG_NO_ABBREVIATED_SEVERITIES)
endif()

# Add third party tools required by conan
message("-- Adding dependencies with conan. Make sure you've called `conan install . --install-folder ${CMAKE_BINARY_DIR}`")
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ all the tricky dependencies.
.. code:: bash
git clone https://github.com/thclark/cpplot
cd cpplot && cmake install
cd cpplot && cmake . -B build
This process will die first time around, and you'll get a message like:

Expand Down
19 changes: 19 additions & 0 deletions docs/source/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,22 @@ Backward Incompatible API Changes
Bug Fixes & Minor Changes
-------------------------
#. n/a (Initial Release)


0.0.3
=====

Minor fixes to build system and docs

New Features
------------
#. n/a

Backward Incompatible API Changes
---------------------------------
#. n/a

Bug Fixes & Minor Changes
-------------------------
#. Fix for building against glog on windows
#. Corrected build instructions in documentation

0 comments on commit 458d26f

Please sign in to comment.