Skip to content

Commit

Permalink
changed how fortran compiler is found in cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholaswogan committed Aug 23, 2022
1 parent a92831b commit 605eee0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 605eee0

Please sign in to comment.