1
0
Fork 0

Add basic project files

This commit is contained in:
Meoweg 2015-11-03 11:46:05 +00:00
parent 741bee71ac
commit b784590949
4 changed files with 14 additions and 0 deletions

3
.gitignore vendored
View file

@ -3,3 +3,6 @@ CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt
matabstrix.js
matabstrix.js.mem

5
CMakeLists.txt Normal file
View file

@ -0,0 +1,5 @@
cmake_minimum_required (VERSION 3.0)
project (Matabstrix)
add_definitions ("-std=c++14 -Wall -Wextra")
file (GLOB sources *.cpp)
add_executable (matabstrix ${sources})

3
configure vendored Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
cmake -DCMAKE_TOOLCHAIN_FILE="$EMSCRIPTEN/cmake/Modules/Platform/Emscripten.cmake"

3
main.cpp Normal file
View file

@ -0,0 +1,3 @@
int main()
{
}