Skip to content

Commit

Permalink
Reference source directory properly
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed May 30, 2018
1 parent b79a5e8 commit 34ebfc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_policy(SET CMP0048 NEW)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
set(CMAKE_DISABLE_SOURCE_CHANGES ON)

project(asdf-cxx VERSION 2.0.2 LANGUAGES CXX)
project(asdf-cxx VERSION 2.0.3 LANGUAGES CXX)
set(PROJECT_DESCRIPTION
"asdf-cxx (Advanced Scientific Data Format), C++ implementation")
set(PROJECT_URL "https://github.com/eschnett/asdf-cxx")
Expand Down Expand Up @@ -101,7 +101,7 @@ add_test(NAME demo COMMAND ./asdf-demo)
add_test(NAME ls COMMAND ./asdf-ls demo.asdf)
add_test(NAME copy COMMAND ./asdf-copy demo.asdf demo2.asdf)
add_test(NAME ls2 COMMAND ./asdf-ls demo2.asdf)
add_test(NAME compare COMMAND ../diff-commands.sh "./asdf-ls demo.asdf" "./asdf-ls demo2.asdf")
add_test(NAME compare COMMAND ${CMAKE_SOURCE_DIR}/diff-commands.sh "./asdf-ls demo.asdf" "./asdf-ls demo2.asdf")

# Coverage

Expand Down

0 comments on commit 34ebfc0

Please sign in to comment.