kyonifer / koma

A scientific computing library for Kotlin. https://kyonifer.github.io/koma
Other
270 stars 23 forks source link

Adjusting paths for MacOS and Homebrew installation. #63

Closed quenio closed 5 years ago

quenio commented 5 years ago

Here are the changes you requested @kyonifer but I'm not sure they'd work on a Linux system.

Probably requires some changes like the following to the build.gradle file:

cinterop('cblas') {
            target('linux') {
                includeDirs.headerFilterOnly '/linux/path/...'
            }

            target('macbook') {
                includeDirs.headerFilterOnly '/macos/path/...'
            }
        }
kyonifer commented 5 years ago

Copy that, I can modify to make sure it builds on linux still when I have a moment.

Thanks for the paths!