diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-05-16 23:10:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 23:10:14 -0400 |
commit | 001bca9c77a4dec9ef348e084e95c9ead3edb576 (patch) | |
tree | 5169cb5a21d2cd976a36e7c5418799791895d813 /tests | |
parent | bc3013fc68746265db78bf92623f7e6e3e469264 (diff) | |
download | cleanpath-001bca9c77a4dec9ef348e084e95c9ead3edb576.tar.gz |
Fix cmake barfing on backslashes (#7)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7a7d3db..c494fd2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -31,8 +31,8 @@ if(WIN32) set(TEST_SETUP ${TEST_SETUP}_WIN) set(exec ${CMAKE_BINARY_DIR}/cleanpath.exe) - add_test(cmd_arg_exact ${exec} --exact ${TEST_SETUP} C:\\usr\\bin) - add_test(cmd_arg_loose ${exec} --loose ${TEST_SETUP} C:\\usr\\bin) + add_test(cmd_arg_exact ${exec} --exact ${TEST_SETUP} C:/usr/bin) + add_test(cmd_arg_loose ${exec} --loose ${TEST_SETUP} C:/usr/bin) else() set(TEST_SETUP ${TEST_SETUP}_NIX) set(exec ${CMAKE_BINARY_DIR}/cleanpath) |