Adding CMake configuration

This commit is contained in:
Alex Yatskov 2015-04-13 18:44:23 +09:00
parent 238f7b75b8
commit 069754f39a
2 changed files with 19 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,4 +1,5 @@
*.user CMakeCache.txt
*.o CMakeFiles
Makefile Makefile
cmake_install.cmake
metacall metacall

16
CMakeLists.txt Normal file
View File

@ -0,0 +1,16 @@
project("metacall")
add_executable(
metacall
mc_binding.cpp
mc_buffer.cpp
mc_client.cpp
mc_prefab.cpp
mc_protocol.cpp
mc_serial.cpp
mc_server.cpp
mc_socket.cpp
mc_stream.cpp
mc_token.cpp
testing.cpp
)