Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
libflint:start [2025/01/07 03:19] – eburk | libflint:start [2025/02/15 19:07] (current) – eburk |
---|
====== libflint ====== | ====== libflint ====== |
| |
[[https://git.burkey.co/eburk/libflint|libflint]] is a library of common C data structures and algorithms, designed to be as agnostic as possible for its users. Over time, it has become my personal library of reusable C code. | [[https://git.burkey.co/eburk/libflint|libflint]] is a library of common C data structures and algorithms designed to be as agnostic as possible for its users. It is, essentially, my personal library of reusable C code. |
| |
<nspages -tree -exclude:[start] -subns -pagesInNs -h1 -textNs="Modules"> | <nspages -tree -exclude:[start] -subns -pagesInNs -h1 -textNs="Modules"> |
| |
| ===== Building ===== |
| |
| ''%%libflint%%'' requires Cmake to be built. It can then be built using either ''%%cmake%%'' or ''%%make%%'' with the provided build files. The ''%%Makefile%%'' is a wrapper around Cmake for Makefile compatibility. |
| |
| ==== Cmake ==== |
| |
| <code cmake> |
| # If libflint is in ./lib/libflint |
| add_subdirectory(lib/libflint) |
| |
| # when building target... |
| target_include_directories(${TARGET} PRIVATE lib/libflint/include) |
| target_link_libraries(${TARGET} PRIVATE flint ) |
| </code> |
| |
===== Requirements ===== | ===== Requirements ===== |