diff options
author | whitequark <whitequark@whitequark.org> | 2020-08-26 09:51:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 09:51:38 +0000 |
commit | f6d436d58b8206aabe287325fc80da5521ed2e75 (patch) | |
tree | db5be86f206ab5f95d2bf585af0c64f243620be2 | |
parent | c8ecb8341ca766e1e7565cc2b652b63eaba67508 (diff) | |
download | nextpnr-f6d436d58b8206aabe287325fc80da5521ed2e75.tar.gz nextpnr-f6d436d58b8206aabe287325fc80da5521ed2e75.tar.bz2 nextpnr-f6d436d58b8206aabe287325fc80da5521ed2e75.zip |
CMake: fix Windows-ism in status message
-rw-r--r-- | ice40/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/CMakeLists.txt b/ice40/CMakeLists.txt index 4275b358..7a878bf4 100644 --- a/ice40/CMakeLists.txt +++ b/ice40/CMakeLists.txt @@ -85,6 +85,6 @@ else() # serialize chipdb build across multiple architectures set(PREVIOUS_CHIPDB_TARGET chipdb-ice40-bbas PARENT_SCOPE) else() - message(STATUS "Build nextpnr with -DICE40_CHIPDB=${CMAKE_CURRENT_BINARY_DIR}\chipdb") + message(STATUS "Build nextpnr with -DICE40_CHIPDB=${CMAKE_CURRENT_BINARY_DIR}/chipdb") endif() endif() |