21 lines
295 B
Text
21 lines
295 B
Text
|
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/../deps/glfw-3.2.1/include
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/../deps/lua-5.3.4/src
|
||
|
)
|
||
|
|
||
|
add_library(pw
|
||
|
STATIC
|
||
|
binding.hpp
|
||
|
binding.cpp
|
||
|
context.hpp
|
||
|
context.cpp
|
||
|
core.hpp
|
||
|
core.cpp
|
||
|
window.hpp
|
||
|
window.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(pw lualib glfw)
|