Add basic project files
This commit is contained in:
parent
741bee71ac
commit
b784590949
4 changed files with 14 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,3 +3,6 @@ CMakeFiles
|
|||
Makefile
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
|
||||
matabstrix.js
|
||||
matabstrix.js.mem
|
||||
|
|
5
CMakeLists.txt
Normal file
5
CMakeLists.txt
Normal 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
3
configure
vendored
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE="$EMSCRIPTEN/cmake/Modules/Platform/Emscripten.cmake"
|
3
main.cpp
Normal file
3
main.cpp
Normal file
|
@ -0,0 +1,3 @@
|
|||
int main()
|
||||
{
|
||||
}
|
Reference in a new issue