Skip to content
Snippets Groups Projects
Commit d06567e1 authored by Andreas Schenk's avatar Andreas Schenk
Browse files

fixed base __init__.py single quote escapes for windows

parent 5135b8e8
Branches
Tags
No related merge requests found
......@@ -10,7 +10,11 @@ if (NOT ENABLE_STATIC)
PY settings.py stutil.py table.py xmlrunner.py testutils.py)
endif()
set(SQ "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'")
if(WIN32)
set(SQ "'")
else(WIN32)
set(SQ "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'")
endif(WIN32)
set(SUBST_DICT "ALL_ADDITIONAL_MODULES=")
if(ENABLE_GUI)
set(SUBST_DICT "${SUBST_DICT},${SQ}gui${SQ}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment