initial checkin

This commit is contained in:
Hartmut Seichter 2017-06-27 23:20:14 +02:00
commit 8c67b1f632
474 changed files with 145799 additions and 0 deletions

20
src/core/CMakeLists.txt Normal file
View file

@ -0,0 +1,20 @@
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)