标签归档:build MySQL with CMake

Autotools to CMake Transition Guide

Introduction

This page shows some common autotools configuration options and how they map to CMake equivalents. It supplements the CMake page that describes how to build MySQL with CMake.

Command Invocation Syntax

The following table shows some common configure invocation syntax and the equivalent CMake commands. The “.” should be replaced with the path to the top-level directory of the source tree if that directory is not your current working directory.

configure Command CMake Command
./configure cmake .
./configure –help cmake . -LH or ccmake .

继续阅读

How to Build MySQL server with CMake

Introduction

This page describes how to build MySQL distributions with CMake. Other resources that you might find useful:


Prerequisites

继续阅读