diff --git a/.gitignore b/.gitignore index 00c6112..f35dde5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -*.user -*.o +CMakeCache.txt +CMakeFiles Makefile +cmake_install.cmake metacall diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9371399 --- /dev/null +++ b/CMakeLists.txt @@ -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 +)