diff options
-rw-r--r-- | RELEASE_NOTES | 1 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 9e2da81..308bbe9 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -20,6 +20,7 @@ o Changed multmatrix floating-point output to improve dumptest portability o Regression test auto-starts & stops Xvfb / Xvnc if on headless unix machine o CGAL triangulation more lenient- enables partial rendering of 'bad' DXF data o Fixes problem where local changes are overwritten on automatic reload when included files has changed. +o Non-ascii filenames are now allowed OpenSCAD 2013.01 ================ diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8fd079f..fff537a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -585,6 +585,10 @@ else() set(GUI_BINPATH "${CMAKE_CURRENT_SOURCE_DIR}/../openscad") endif() +if(EXISTS "${CMAKE_CURRENT_BINARY_DIR}/openscad") + set(GUI_BINPATH "${CMAKE_CURRENT_BINARY_DIR}/openscad") +endif() + if(EXISTS "${GUI_BINPATH}") message(STATUS "Found OpenSCAD GUI binary: ${GUI_BINPATH}") else() |