LLU added

This commit is contained in:
2026-02-18 19:31:32 -06:00
parent 79c321197a
commit 0c3fa5556d
5 changed files with 51 additions and 1 deletions

40
.gitignore vendored Normal file
View File

@@ -0,0 +1,40 @@
# OS junk
.DS_Store
Thumbs.db
# Editor settings
.vscode/**
.idea/**
*.swp
*.swo
# Build system metadata (keep actual build dirs tracked)
CMakeFiles/**
CMakeCache.txt
cmake_install.cmake
Makefile
compile_commands.json
# Logs and temp files
*.log
*.tmp
*.bak
*.old
build/**
*.toml
.cache/**
**/*.aux
**/*.fdb_latexmk
**/*.fls
**/*.log
**/*.synctex.gz
**/*.blg
**/*.bcf
**/*.run.xml
**/*.bbl
build-linux/**
build-windows/**

4
.gitmodules vendored
View File

@@ -1,3 +1,7 @@
[submodule "external/spdlog"] [submodule "external/spdlog"]
path = external/spdlog path = external/spdlog
url = https://github.com/gabime/spdlog.git url = https://github.com/gabime/spdlog.git
[submodule "external/LibraryLinkUtilities"]
path = external/LibraryLinkUtilities
url = https://github.com/WolframResearch/LibraryLinkUtilities

View File

@@ -18,7 +18,7 @@ endif()
# External dependency: spdlog # External dependency: spdlog
# -------------------------------------------------- # --------------------------------------------------
add_subdirectory(external/spdlog) add_subdirectory(external/spdlog)
add_subdirectory(external/LibraryLinkUtilities)
# -------------------------------------------------- # --------------------------------------------------
# Executable # Executable
# -------------------------------------------------- # --------------------------------------------------
@@ -58,6 +58,7 @@ target_sources(${PROJECT_NAME} PRIVATE ${ALL_CPP})
# -------------------------------------------------- # --------------------------------------------------
target_link_libraries(${PROJECT_NAME} PRIVATE target_link_libraries(${PROJECT_NAME} PRIVATE
spdlog::spdlog spdlog::spdlog
LLU
) )
# -------------------------------------------------- # --------------------------------------------------

4
src/main.cpp Normal file
View File

@@ -0,0 +1,4 @@
int main (int argc, char *argv[]) {
return 0;
}