parent
af981cc718
commit
f1e3010839
1
src/Bindings/.gitignore
vendored
Normal file
1
src/Bindings/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
lua51.dll
|
Binary file not shown.
@ -82,17 +82,36 @@ set(BINDING_DEPENDECIES
|
|||||||
include_directories(Bindings)
|
include_directories(Bindings)
|
||||||
include_directories(.)
|
include_directories(.)
|
||||||
|
|
||||||
ADD_CUSTOM_COMMAND(
|
if (WIN32)
|
||||||
|
ADD_CUSTOM_COMMAND(
|
||||||
# add any new generated bindings here
|
# add any new generated bindings here
|
||||||
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.cpp ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.h
|
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.cpp ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.h
|
||||||
|
|
||||||
# command execuded to regerate bindings
|
# Copy the Lua DLL into the Bindings folder, so that tolua can run from there:
|
||||||
|
COMMAND copy /y ..\\..\\MCServer\\lua51.dll .
|
||||||
|
|
||||||
|
# Regenerate bindings:
|
||||||
COMMAND tolua -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
|
COMMAND tolua -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/
|
||||||
|
|
||||||
# add any new generation dependencies here
|
# add any new generation dependencies here
|
||||||
DEPENDS ${BINDING_DEPENDECIES}
|
DEPENDS ${BINDING_DEPENDECIES}
|
||||||
)
|
)
|
||||||
|
else ()
|
||||||
|
ADD_CUSTOM_COMMAND(
|
||||||
|
# add any new generated bindings here
|
||||||
|
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.cpp ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.h
|
||||||
|
|
||||||
|
# Regenerate bindings:
|
||||||
|
COMMAND tolua -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
|
||||||
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/
|
||||||
|
|
||||||
|
# add any new generation dependencies here
|
||||||
|
DEPENDS ${BINDING_DEPENDECIES}
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
set_source_files_properties(Bindings/Bindings.cpp PROPERTIES GENERATED TRUE)
|
||||||
|
set_source_files_properties(Bindings/Bindings.h PROPERTIES GENERATED TRUE)
|
||||||
|
|
||||||
if (NOT MSVC)
|
if (NOT MSVC)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user