Browse Source

Merge pull request #1697 from martin-frbg/issue1696

Do not treat WIndows UWB builds as cross-compiling
tags/v0.3.2^2
Martin Kroeker GitHub 7 years ago
parent
commit
25f2d25cfe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmake/prebuild.cmake

+ 1
- 1
cmake/prebuild.cmake View File

@@ -85,7 +85,7 @@ if (NOT NOFORTRAN)
endif ()

# Cannot run getarch on target if we are cross-compiling
if (DEFINED CORE AND CMAKE_CROSSCOMPILING)
if (DEFINED CORE AND CMAKE_CROSSCOMPILING AND NOT (${HOST_OS} STREQUAL "WINDOWSSTORE"))
# Write to config as getarch would

# TODO: Set up defines that getarch sets up based on every other target


Loading…
Cancel
Save