diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d3c717..65e0660 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,10 @@ cmake_minimum_required(VERSION "3.14") -project(lsoda LANGUAGES Fortran CXX) +project(lsoda LANGUAGES CXX C) + +include(CMakeDetermineFortranCompiler) +enable_language(Fortran) +include(FortranCInterface) option(SKBUILD "Should be ON of being build by skbuild, and OFF of being build by regular cmake" OFF) diff --git a/setup.py b/setup.py index 83e0c53..7b175c3 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="numbalsoda", packages=['numbalsoda'], - version='0.3.1', + version='0.3.2', license='MIT', install_requires=['numpy','numba'], author = 'Nicholas Wogan',