Initial commit
This commit is contained in:
commit
19cda01d4e
3 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
build/
|
||||
5
CMakeLists.txt
Normal file
5
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
cmake_minimum_required(VERSION 4.0)
|
||||
|
||||
project(em-example LANGUAGES C CXX)
|
||||
|
||||
add_executable(em-example main.cpp)
|
||||
6
main.cpp
Normal file
6
main.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <iostream>
|
||||
|
||||
int main(int, char**) {
|
||||
std::cout << "Hello Emscripten" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue