File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Upcoming Changes
22
3+ # 0.7-2
4+
5+ Deprecate ` virtual_memory_page_size ` ; use ` get_virtual_memory_page_size() ` instead. (#132 )
6+
7+ CMake improvements:
8+
9+ * Generate container node sizes using CMake, which makes cross-compiling easier (#129 )
10+ * Set ` CMAKE_RUNTIME_OUTPUT_DIRECTORY ` properly to support shared libraries (#132 )
11+
312# 0.7-1
413
514Just bugfixes:
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ project(FOONATHAN_MEMORY)
99
1010set (FOONATHAN_MEMORY_VERSION_MAJOR 0 CACHE STRING "major version of memory" FORCE )
1111set (FOONATHAN_MEMORY_VERSION_MINOR 7 CACHE STRING "minor version of memory" FORCE )
12- set (FOONATHAN_MEMORY_VERSION_PATCH 1 CACHE STRING "patch version of memory" FORCE )
12+ set (FOONATHAN_MEMORY_VERSION_PATCH 2 CACHE STRING "patch version of memory" FORCE )
1313set (FOONATHAN_MEMORY_VERSION "${FOONATHAN_MEMORY_VERSION_MAJOR} .${FOONATHAN_MEMORY_VERSION_MINOR} .${FOONATHAN_MEMORY_VERSION_PATCH} "
1414 CACHE STRING "version of memory" FORCE )
1515
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ To use an installed library:
1791794. Call `find_package(foonathan_memory major.minor REQUIRED)` to find the library.
180180
1811815. Call `target_link_libraries(your_target PUBLIC foonathan_memory)` to link to the library and setup all required options.
182-
182+
183183See https://memory.foonathan.net/md_doc_installation.html for a detailed guide.
184184
185185## Documentation
You can’t perform that action at this time.
0 commit comments