Initial commit

This commit is contained in:
jstefanelli 2025-08-27 15:06:53 +02:00
commit 19cda01d4e
Signed by: jstefanelli
GPG key ID: 60EDE2437640D2AA
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
build/

5
CMakeLists.txt Normal file
View 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
View file

@ -0,0 +1,6 @@
#include <iostream>
int main(int, char**) {
std::cout << "Hello Emscripten" << std::endl;
return 0;
}