Hello, world!

This commit is contained in:
2026-08-04 17:59:25 +02:00
commit 6e3590d532
6 changed files with 42 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
add_executable(xrbx_test
test.cpp
)
target_link_libraries(xrbx_test
PRIVATE
xrbx
)
+6
View File
@@ -0,0 +1,6 @@
#include "xrbx/xrbx.h"
int main() {
helloWorld();
return 0;
}