Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,4 @@ jobs:
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --build-config ${{ matrix.build_type }}
if: ${{ matrix.os == 'ubuntu-latest' && matrix.c_compiler == 'gcc' }}
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@
[submodule "extern/tinyxml2"]
path = extern/tinyxml2
url = https://github.com/leethomason/tinyxml2.git
[submodule "extern/BAST"]
path = extern/BAST
url = ../BAST
branch = main
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ endif()
if(PROJECT_IS_TOP_LEVEL)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules)
add_subdirectory(extern/tinyxml2)
add_subdirectory(extern/BAST)
add_subdirectory(extern/POGLIB)
endif(PROJECT_IS_TOP_LEVEL)

Expand All @@ -29,4 +30,4 @@ add_subdirectory(src)
if(PROJECT_IS_TOP_LEVEL)
include (CTest)
add_subdirectory(test)
endif()
endif(PROJECT_IS_TOP_LEVEL)
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

[![License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)


![Code format](https://github.com/CLEARSY/b2smtlib/actions/workflows/clang-format-check.yml/badge.svg)
![Build & Test](https://github.com/CLEARSY/b2smtlib/actions/workflows/cmake-multi-platform.yml/badge.svg)

`POG2WhyML` is a translator from pog to WhyML, the language of the [Why3](https://why3.org) platform for deductive program verification.

## Getting the sources
Expand Down
1 change: 1 addition & 0 deletions extern/BAST
Submodule BAST added at ef0a47
Loading