Skip to content

Commit 5c68d55

Browse files
authored
Preparation for Official Release v1.0.0
Signed-off-by: GitHub <[email protected]>
1 parent e2c142a commit 5c68d55

File tree

5 files changed

+8
-28
lines changed

5 files changed

+8
-28
lines changed

Diff for: .github/workflows/Code_Coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v2
3636

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

4040
- name: Build
4141
# Build your program with the given configuration

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.9)
22

33
# set the project name and version
4-
project(CXXGraph VERSION 0.5.0)
4+
project(CXXGraph VERSION 1.0.0)
55

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

Diff for: examples/CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
option(EXAMPLES "Enable Examples Compilation" OFF)
2+
if(EXAMPLES)
3+
14
add_subdirectory(DialExample)
25
add_subdirectory(DijkstraExample)
3-
add_subdirectory(PartitionExample)
6+
add_subdirectory(PartitionExample)
7+
8+
endif(EXAMPLES)

Diff for: packaging/haxelib.json

-17
This file was deleted.

Diff for: packaging/haxelib.md

-8
This file was deleted.

0 commit comments

Comments
 (0)