AshampooSystems / boden

Purely native C++ cross-platform GUI framework for Android and iOS development. https://www.boden.io
Other
1.67k stars 96 forks source link

Replace \ with \\ to fix invalid escape sequence in CMakeLists.txt #28

Closed sryze closed 4 years ago

sryze commented 4 years ago

This will change:

add_subdirectory(..\Tools\boden boden)

to:

add_subdirectory(..\\Tools\\boden boden)

in path/to/project/CMakeLists.txt.

Maddimax commented 4 years ago

Thank you for your pull request. I've changed it a little to replace \ with / instead.