LLU added
This commit is contained in:
40
.gitignore
vendored
Normal file
40
.gitignore
vendored
Normal 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
4
.gitmodules
vendored
@@ -1,3 +1,7 @@
|
||||
[submodule "external/spdlog"]
|
||||
path = external/spdlog
|
||||
url = https://github.com/gabime/spdlog.git
|
||||
|
||||
[submodule "external/LibraryLinkUtilities"]
|
||||
path = external/LibraryLinkUtilities
|
||||
url = https://github.com/WolframResearch/LibraryLinkUtilities
|
||||
|
||||
@@ -18,7 +18,7 @@ endif()
|
||||
# External dependency: spdlog
|
||||
# --------------------------------------------------
|
||||
add_subdirectory(external/spdlog)
|
||||
|
||||
add_subdirectory(external/LibraryLinkUtilities)
|
||||
# --------------------------------------------------
|
||||
# Executable
|
||||
# --------------------------------------------------
|
||||
@@ -58,6 +58,7 @@ target_sources(${PROJECT_NAME} PRIVATE ${ALL_CPP})
|
||||
# --------------------------------------------------
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE
|
||||
spdlog::spdlog
|
||||
LLU
|
||||
)
|
||||
|
||||
# --------------------------------------------------
|
||||
|
||||
1
external/LibraryLinkUtilities
vendored
Submodule
1
external/LibraryLinkUtilities
vendored
Submodule
Submodule external/LibraryLinkUtilities added at 4798bfa6cf
4
src/main.cpp
Normal file
4
src/main.cpp
Normal file
@@ -0,0 +1,4 @@
|
||||
int main (int argc, char *argv[]) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user