CMake. Add comment about static/shared.

This commit is contained in:
f3nix 2008-01-06 21:56:45 +00:00
parent 638ab25498
commit ba3b2934ef
2 changed files with 19 additions and 15 deletions

View File

@ -1,7 +1,6 @@
TODO: TODO:
* Fix minizip build on windows. * Fix minizip build on windows.
* Add install targets for binaries, docs, translations, libraries on Mac. * Add install targets for binaries and resources on Mac.
* Add PYTHON. * Add PYTHON.
* Add shared/static.
* Testing. * Testing.
* More testing ... * More testing ...

View File

@ -1,3 +1,21 @@
# List of variables that may be set from command line:
#
# CMAKE_BUILD_TYPE Release/Debug (REQUIRED)
# Choose build type: Release/Debug
#
# wxWidgets_USE_DEBUG ON/OFF (REQUIRED)
# Should be set to ON only when CMAKE_BUILD_TYPE=Debug.
#
# wxWidgets_USE_STATIC ON/OFF (OPTIONAL)
#
#
# CMAKE_VERBOSE_MAKEFILE ON/OFF (OPTIONAL)
# Turns ON/OFF verbose build messages.
#
# CMAKE_INSTALL_PREFIX (OPTIONAL)
#
#
# Our project is called 'kicad'. This is what it will be called in # Our project is called 'kicad'. This is what it will be called in
# our makefiles. # our makefiles.
PROJECT(kicad) PROJECT(kicad)
@ -7,19 +25,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.4.6 FATAL_ERROR)
# Path to local CMake modules # Path to local CMake modules
SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules) SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
# List of variables that may be set from command line:
# CMAKE_VERBOSE_MAKEFILE ON/OFF (OPTIONAL)
# Turns ON/OFF verbose build messages.
#
# CMAKE_BUILD_TYPE Release/Debug (REQUIRED)
#
#
# wxWidgets_USE_DEBUG ON/OFF (REQUIRED)
# Should be set to ON only when CMAKE_BUILD_TYPE=Debug.
#
# CMAKE_INSTALL_PREFIX (OPTIONAL)
#
# Comment this out if you don't want to build minizip. # Comment this out if you don't want to build minizip.
SET(KICAD_MINIZIP ON CACHE BOOL "Build minizip?") SET(KICAD_MINIZIP ON CACHE BOOL "Build minizip?")