Skip to content

Commit

Permalink
Fix lua.dll copy path
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul committed Jun 15, 2015
1 parent 1234b4b commit 735adb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ if (WIN32 AND MSVC)
add_custom_command(TARGET Alive POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy "${SDL2_INCLUDE_DIR}/../lib/${arch}/SDL2.dll" "$(OutDir)SDL2.dll")
add_custom_command(TARGET Alive POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_BINARY_DIR}/3rdParty/luajit/Debug/lua.dll" "$(OutDir)lua.dll")
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_BINARY_DIR}/3rdParty/luajit/$(Configuration)/lua.dll" "$(OutDir)lua.dll")
INSTALL(FILES "${SDL2_INCLUDE_DIR}/../lib/${arch}/SDL2.dll" DESTINATION ".")
endif()

Expand Down

0 comments on commit 735adb7

Please sign in to comment.