Skip to content

Commit 824dabd

Browse files
authored
remove the redundant slash in CMake Path (#3427)
1 parent c3d0ba0 commit 824dabd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Samples/Emscripten/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(MEDIA_DIR ${CMAKE_BINARY_DIR}/bin/media/)
1+
set(MEDIA_DIR ${CMAKE_BINARY_DIR}/bin/media)
22

33
set(CMAKE_EXECUTABLE_SUFFIX ".html")
44
set(CMAKE_EXE_LINKER_FLAGS "--preload-file ${MEDIA_DIR}/@. -s EXPORTED_FUNCTIONS=\"[ '_passAssetAsArrayBuffer', '_clearScene', '_main']\" -s USE_SDL=2 -s MAX_WEBGL_VERSION=2")
@@ -22,7 +22,7 @@ file(COPY
2222
"${CMAKE_SOURCE_DIR}/Samples/Media/materials/textures/rockwall.tga"
2323
"${CMAKE_SOURCE_DIR}/Media/packs/SdkTrays.zip"
2424
"${CMAKE_SOURCE_DIR}/Samples/Media/packs/Sinbad.zip"
25-
DESTINATION ${MEDIA_DIR})
25+
DESTINATION ${MEDIA_DIR}/)
2626

2727
file(COPY
2828
"${CMAKE_SOURCE_DIR}/Media/RTShaderLib"

0 commit comments

Comments
 (0)