Skip to content

Commit

Permalink
fix: windows compilation
Browse files Browse the repository at this point in the history
temporarily exclude aarch64 target machine
  • Loading branch information
dar-dev authored and MikOfClassX committed Mar 26, 2024
1 parent 36e4071 commit 51a3898
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions flatlaf-natives/flatlaf-natives-windows/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ plugins {

flatlafJniHeaders {
headers = listOf(
"com_formdev_flatlaf_ui_FlatNativeLibrary.h",
"com_formdev_flatlaf_ui_FlatNativeWindowsLibrary.h",
"com_formdev_flatlaf_ui_FlatWindowsNativeWindowBorder.h",
"com_formdev_flatlaf_ui_FlatWindowsNativeWindowBorder_WndProc.h"
)
}

library {
targetMachines = listOf(
targetMachines.set( listOf(
machines.windows.x86,
machines.windows.x86_64,
machines.windows.architecture( "aarch64" )
)
//machines.windows.architecture( "aarch64" )
) )
}

var javaHome = System.getProperty( "java.home" )
Expand Down

0 comments on commit 51a3898

Please sign in to comment.