Skip to content

Commit

Permalink
put native back
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Nov 10, 2023
1 parent 1de9689 commit 153e812
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ lazy val root = tlCrossRootProject.aggregate(core, tests)

lazy val core = crossProject(
JSPlatform,
JVMPlatform
// NativePlatform
JVMPlatform,
NativePlatform
)
.crossType(CrossType.Full)
.settings(
Expand All @@ -46,14 +46,14 @@ lazy val core = crossProject(
- Array[Double] on native.
- Float64Array on JS""",
libraryDependencies ++= Seq(
// ai.dragonfly" %%% "narr" % "0.103", I do'nt think we need this ... it can be added seperately in userland!
// ai.dragonfly" %%% "narr" % "0.103", I do'nt think we need this as a dependance ... it can be added seperately in userland!
"dev.ludovic.netlib" % "blas" % "3.0.3"
)
)
.jvmSettings(
)
.jsSettings()
//.nativeSettings()
.nativeSettings()

lazy val docs = project
.in(file("site"))
Expand Down Expand Up @@ -101,8 +101,8 @@ lazy val docs = project

lazy val tests = crossProject(
JVMPlatform,
JSPlatform
// NativePlatform
JSPlatform,
NativePlatform
)
.in(file("tests"))
.enablePlugins(NoPublishPlugin)
Expand Down
2 changes: 1 addition & 1 deletion tests/native/src/test/scala/boundsCheck.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*/


package vecxt
import VectorDimensionMismatch

class BoundsCheckSuite extends munit.FunSuite:

Expand Down

0 comments on commit 153e812

Please sign in to comment.