Skip to content

Commit 825ab09

Browse files
committed
ADD: fundamental badge
1 parent fa7640f commit 825ab09

File tree

6 files changed

+18
-4
lines changed

6 files changed

+18
-4
lines changed

.github/workflows/win-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
auto-update-conda: true
2525
python-version: 3.9.1
2626

27-
- name: CMAKE Configure
27+
- name: Cmake Configure
2828
run: ${{github.workspace}}/cmake/config.bat
2929
- name: CMake Build
3030
run: ${{github.workspace}}/cmake/build.bat

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<img src="https://github.com/diffCheckOrg/diffCheck/actions/workflows/win-build.yml/badge.svg">
66
<img src="https://github.com/diffCheckOrg/diffCheck/actions/workflows/gh-build.yml/badge.svg">
77
<img src="https://img.shields.io/pypi/v/diffCheck" href="https://pypi.org/project/diffCheck/">
8+
<img src="https://badges.frapsoft.com/os/v2/open-source.svg?v=103" href="https://github.com/ellerbrock/open-source-badges/">
89
</p>
910

1011

cmake/__noenv__clean.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@echo off
2+
setlocal
3+
4+
REM clean the build directory and reconfigure it
5+
rmdir /s /q build
6+
7+
REM configure the project
8+
cmake -S . -B build -G "Visual Studio 16 2019" -A x64

cmake/__noenv__clean_config.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@echo off
2+
setlocal
3+
4+
REM clean the build directory and reconfigure it
5+
rmdir /s /q build
6+
7+
REM configure the project
8+
cmake -S . -B build -G "Visual Studio 16 2019" -A x64

cmake/build.bat

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
@echo off
22
setlocal
33

4-
REM activate the conda diff_check environment otherwise the python wrap won't work
5-
call cmake/activate_conda.bat
6-
74
REM build the project in Release mode
85
cmake --build build --config Release

environment.yml

-54 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)