Andrew-Au

Results 3 issues of Andrew-Au

- Update minimum required to CMake version 3.5 (versions older than 3.5 are deprecated as of 3.27) - update add_definitions to target_compile_definitions - use target_include_directories for public library includes

MacOS using XCode Create FetchContent import as follows: ``` include( FetchContent ) FetchContent_Declare( jansson GIT_REPOSITORY https://github.com/akheron/jansson.git GIT_TAG 684e18c927e89615c2d501737e90018f4930d6c5 # v2.14 ) FetchContent_MakeAvailable( jansson ) ``` What works: * automatic download...

- Update minimum required to CMake version 3.5 (versions older than 3.5 are deprecated as of 3.27) - update add_definitions to target_compile_definitions - use target_include_directories for public library includes -...