Init. Copied over heload, made a minimal tester.

This commit is contained in:
2025-03-16 18:46:12 +02:00
commit 21bf4d8715
12 changed files with 646 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
project(Minimal)
set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
add_executable(minimal
minimal.cpp
)
add_library(mini SHARED
minimal_lib.cpp
minimal_lib.h
)
target_link_libraries(minimal mini)