File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2020# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121# SOFTWARE.
2222cmake_minimum_required (VERSION 3.18)
23- project (expr VERSION 3.0.0 )
23+ project (expr VERSION 3.0.3 )
2424include (cmake/CPM.cmake)
2525configure_file (src/config.h.in config.h)
2626set (CMAKE_CXX_STANDARD 20)
4141
4242if (ENABLE_Z3)
4343 include (cmake/Z3.cmake)
44- get_z3_zip_file(z3-4.11.2)
45- CPMAddPackage(NAME z3 VERSION z3-4.11.2 URL ${z3vstr} )
44+ set (Z3_VERSION_NUMBER z3-4.12.2)
45+ get_z3_zip_file(${Z3_VERSION_NUMBER} )
46+ CPMAddPackage(NAME z3 VERSION ${Z3_VERSION_NUMBER} URL ${z3vstr} )
4647endif ()
4748
4849set (${PROJECT_NAME} _BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE STRING "expr_BUILD_DIR" FORCE)
Original file line number Diff line number Diff line change 1- set (CPM_DOWNLOAD_VERSION 0.38.0 )
1+ set (CPM_DOWNLOAD_VERSION 0.38.5 )
22
33if (CPM_SOURCE_CACHE)
44 # Expand relative path. This is important if the provided path contains a tilde (~)
Original file line number Diff line number Diff line change 2222 */
2323#include " operations/divide.h"
2424#include " operations/util.h"
25+ #include < cstdint>
2526#include < sstream>
2627using namespace expr ;
2728
You can’t perform that action at this time.
0 commit comments