Skip to content

Commit

Permalink
Preparation for Official Release v1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
ZigRazor authored Mar 28, 2023
1 parent e2c142a commit 5c68d55
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Code_Coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCODE_COVERAGE=ON -DTEST=ON
run: cmake -B ${{github.workspace}}/build sudo apt-get install lcov gcovr

- name: Build
# Build your program with the given configuration
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.9)

# set the project name and version
project(CXXGraph VERSION 0.5.0)
project(CXXGraph VERSION 1.0.0)

configure_file(CXXGraphConfig.h.in ${PROJECT_SOURCE_DIR}/include/CXXGraphConfig.h)

Expand Down
7 changes: 6 additions & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
option(EXAMPLES "Enable Examples Compilation" OFF)
if(EXAMPLES)

add_subdirectory(DialExample)
add_subdirectory(DijkstraExample)
add_subdirectory(PartitionExample)
add_subdirectory(PartitionExample)

endif(EXAMPLES)
17 changes: 0 additions & 17 deletions packaging/haxelib.json

This file was deleted.

8 changes: 0 additions & 8 deletions packaging/haxelib.md

This file was deleted.

0 comments on commit 5c68d55

Please sign in to comment.