2018-12-27 23:45:16 +01:00
|
|
|
#add_subdirectory(src)
|
|
|
|
|
|
|
|
|
|
|
|
set(hdrs
|
|
|
|
include/pw/scripting/script.hpp
|
|
|
|
include/pw/scripting/scripting.hpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(srcs
|
|
|
|
src/script.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(pwscripting
|
|
|
|
STATIC
|
|
|
|
${hdrs}
|
|
|
|
${srcs}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(
|
|
|
|
pwscripting
|
|
|
|
PUBLIC
|
|
|
|
include
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(
|
|
|
|
pwscripting
|
|
|
|
PRIVATE
|
|
|
|
${CMAKE_SOURCE_DIR}/src/deps/lua-5.3.4/src
|
|
|
|
${CMAKE_SOURCE_DIR}/src/deps/sol
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(pwscripting lualib pwcore pwui pwscene)
|