2008-03-11 15:57:54 +00:00
|
|
|
project(kicad)
|
2008-01-06 21:56:45 +00:00
|
|
|
|
2008-09-07 19:32:07 +00:00
|
|
|
if(WIN32)
|
|
|
|
cmake_minimum_required(VERSION 2.6.1 FATAL_ERROR)
|
|
|
|
else(WIN32)
|
2008-06-21 08:55:39 +00:00
|
|
|
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
|
2008-09-07 19:32:07 +00:00
|
|
|
endif(WIN32)
|
2008-01-06 21:56:45 +00:00
|
|
|
|
2008-03-31 01:32:15 +00:00
|
|
|
# Path to local CMake modules.
|
2008-03-11 15:57:54 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-02-06 20:36:44 +00:00
|
|
|
# Command line option to enable or disable building minizip. Minizip
|
|
|
|
# building is enabled by default. Use -DKICAD_MINZIP=OFF to disable
|
2008-01-28 05:49:15 +00:00
|
|
|
# building minizip.
|
2008-03-11 15:57:54 +00:00
|
|
|
option(KICAD_MINIZIP "enable/disable building minizip (default ON)" ON)
|
2008-01-05 19:16:30 +00:00
|
|
|
|
2008-11-05 11:41:15 +00:00
|
|
|
# Russian GOST and CYRILLIC patch
|
2009-05-05 17:32:07 +00:00
|
|
|
option(KICAD_CYRILLIC "enable/disable building using cyrillic (needs unicode) (default OFF)")
|
2008-11-05 11:41:15 +00:00
|
|
|
option(wxUSE_UNICODE "enable/disable building unicode (default OFF)")
|
2009-05-05 17:32:07 +00:00
|
|
|
option(KICAD_GOST "enable/disable building using GOST notation for multiple gates per package (default OFF)")
|
2008-11-05 11:41:15 +00:00
|
|
|
|
2008-01-06 12:03:13 +00:00
|
|
|
# Comment this out if you don't want to build with Python support.
|
2008-02-06 20:36:44 +00:00
|
|
|
# OPTION(KICAD_PYTHON "enable/disable building with Python support (default OFF)")
|
2007-12-11 21:02:05 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
|
|
|
|
#================================================
|
2008-03-31 01:32:15 +00:00
|
|
|
# Set flags for GCC.
|
2008-08-11 11:45:29 +00:00
|
|
|
#================================================
|
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2008-02-27 19:38:16 +00:00
|
|
|
# Set default flags for Release build.
|
2008-03-11 15:57:54 +00:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-Wall -O2 -DNDEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "-Wall -O2 -DNDEBUG")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "-s")
|
2008-02-27 19:38:16 +00:00
|
|
|
|
|
|
|
# Set default flags for Debug build.
|
2008-03-11 15:57:54 +00:00
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -g3 -ggdb3 -DDEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -g3 -ggdb3 -DDEBUG")
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-11-05 11:41:15 +00:00
|
|
|
if(KICAD_CYRILLIC)
|
|
|
|
add_definitions(-DKICAD_CYRILLIC)
|
|
|
|
endif(KICAD_CYRILLIC)
|
|
|
|
|
|
|
|
if(wxUSE_UNICODE)
|
|
|
|
add_definitions(-DwxUSE_UNICODE)
|
|
|
|
endif(wxUSE_UNICODE)
|
|
|
|
|
|
|
|
if(KICAD_GOST)
|
|
|
|
add_definitions(-DKICAD_GOST)
|
|
|
|
endif(KICAD_GOST)
|
|
|
|
|
2007-12-25 20:48:58 +00:00
|
|
|
# Locations for install targets.
|
2008-08-11 11:45:29 +00:00
|
|
|
set(KICAD_BIN bin
|
|
|
|
CACHE PATH "Location of KiCad binaries.")
|
2008-03-05 07:16:43 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
if(UNIX)
|
2008-06-15 16:31:32 +00:00
|
|
|
# Everything without leading / is relative to CMAKE_INSTALL_PREFIX.
|
2008-08-11 11:45:29 +00:00
|
|
|
set(KICAD_PLUGINS lib/kicad/plugins
|
|
|
|
CACHE PATH "Location of KiCad plugins.")
|
|
|
|
set(KICAD_DATA share/kicad
|
|
|
|
CACHE PATH "Location of KiCad data files.")
|
|
|
|
set(KICAD_DOCS share/doc/kicad
|
|
|
|
CACHE PATH "Location of KiCad documentation files.")
|
2008-03-11 15:57:54 +00:00
|
|
|
endif(UNIX)
|
2007-11-08 12:46:02 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
if(WIN32)
|
2008-01-30 09:42:19 +00:00
|
|
|
# Like all variables, CMAKE_INSTALL_PREFIX can be over-ridden on the command line.
|
2008-09-07 19:32:07 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX c:/kicad
|
|
|
|
CACHE PATH "")
|
2008-03-31 01:32:15 +00:00
|
|
|
# Everything without leading / is relative to CMAKE_INSTALL_PREFIX.
|
2008-09-07 19:32:07 +00:00
|
|
|
set(KICAD_PLUGINS ${KICAD_BIN}/plugins
|
|
|
|
CACHE PATH "Location of KiCad plugins.")
|
|
|
|
set(KICAD_DATA share
|
|
|
|
CACHE PATH "Location of KiCad data files.")
|
|
|
|
set(KICAD_DOCS doc
|
|
|
|
CACHE PATH "Location of KiCad documentation files.")
|
2008-03-11 15:57:54 +00:00
|
|
|
endif(WIN32)
|
|
|
|
|
2008-09-07 19:32:07 +00:00
|
|
|
set(KICAD_DEMOS ${KICAD_DATA}/demos
|
2008-08-11 11:45:29 +00:00
|
|
|
CACHE PATH "Location of KiCad demo files.")
|
2008-09-07 19:32:07 +00:00
|
|
|
set(KICAD_INTERNAT ${KICAD_DATA}/internat
|
2008-08-11 11:45:29 +00:00
|
|
|
CACHE PATH "Location of KiCad i18n files.")
|
|
|
|
set(KICAD_TEMPLATE ${KICAD_DATA}/template
|
|
|
|
CACHE PATH "Location of KiCad template files.")
|
|
|
|
|
2008-09-07 19:32:07 +00:00
|
|
|
mark_as_advanced(KICAD_BIN
|
2008-08-11 11:45:29 +00:00
|
|
|
KICAD_PLUGINS
|
|
|
|
KICAD_DATA
|
|
|
|
KICAD_DOCS
|
|
|
|
KICAD_DEMOS
|
|
|
|
KICAD_INTERNAT
|
|
|
|
KICAD_TEMPLATE)
|
2008-03-31 01:32:15 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
#================================================
|
2008-04-13 14:00:01 +00:00
|
|
|
# Find libraries that are needed to build KiCad.
|
2008-08-11 11:45:29 +00:00
|
|
|
#================================================
|
2008-04-13 14:00:01 +00:00
|
|
|
include(CheckFindPackageResult)
|
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
#######################
|
|
|
|
# Find OpenGL library #
|
|
|
|
#######################
|
2008-09-07 19:32:07 +00:00
|
|
|
find_package(OpenGL QUIET)
|
2008-04-13 14:00:01 +00:00
|
|
|
check_find_package_result(OPENGL_FOUND "OpenGL")
|
2008-03-11 15:57:54 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
######################
|
|
|
|
# Find Boost library #
|
|
|
|
######################
|
2008-09-07 19:32:07 +00:00
|
|
|
find_package(Boost QUIET)
|
2008-04-13 14:00:01 +00:00
|
|
|
check_find_package_result(Boost_FOUND "Boost")
|
2008-01-30 09:42:19 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
##########################
|
|
|
|
# Find wxWidgets library #
|
|
|
|
##########################
|
2008-01-06 12:03:13 +00:00
|
|
|
# Here you can define what libraries of wxWidgets you need for your
|
|
|
|
# application. You can figure out what libraries you need here;
|
|
|
|
# http://www.wxwidgets.org/manuals/2.8/wx_librarieslist.html
|
2008-12-02 15:39:20 +00:00
|
|
|
find_package(wxWidgets COMPONENTS gl html adv core net base QUIET)
|
2008-04-13 14:00:01 +00:00
|
|
|
check_find_package_result(wxWidgets_FOUND "wxWidgets")
|
2007-11-08 12:46:02 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
|
2008-01-06 12:03:13 +00:00
|
|
|
# Include wxWidgets macros.
|
2008-03-11 15:57:54 +00:00
|
|
|
include(${wxWidgets_USE_FILE})
|
2008-01-06 12:03:13 +00:00
|
|
|
|
2008-04-13 19:07:32 +00:00
|
|
|
# Include MinGW resource compiler.
|
|
|
|
include(MinGWResourceCompiler)
|
|
|
|
|
2009-05-21 17:42:42 +00:00
|
|
|
# Generate build system specific header file.
|
|
|
|
include(PerformFeatureChecks)
|
|
|
|
perform_feature_checks()
|
|
|
|
|
2008-06-06 12:39:00 +00:00
|
|
|
# Automagically create version header file.
|
2008-12-02 15:39:20 +00:00
|
|
|
include(CreateSVNVersionHeader)
|
|
|
|
create_svn_version_header()
|
2008-05-05 13:26:46 +00:00
|
|
|
|
2008-08-29 14:06:19 +00:00
|
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/include/config.h)
|
2008-09-07 19:32:07 +00:00
|
|
|
# This file may exist (created by an alternate process to the svn test above),
|
|
|
|
# e.g. could be created by a checkout script that produces a source tar file.
|
|
|
|
# This directive means the about box will have the svn date & revision in it,
|
|
|
|
# but the hard coded release date (program version) will be preserved.
|
|
|
|
add_definitions(-DHAVE_SVN_REVISION)
|
2008-08-29 14:06:19 +00:00
|
|
|
endif(EXISTS ${CMAKE_SOURCE_DIR}/include/config.h)
|
|
|
|
|
2008-08-15 16:38:05 +00:00
|
|
|
|
2008-01-06 12:03:13 +00:00
|
|
|
# Include paths.
|
2008-08-11 11:45:29 +00:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/include
|
|
|
|
${CMAKE_SOURCE_DIR}/share
|
|
|
|
${CMAKE_BINARY_DIR})
|
|
|
|
|
2008-01-06 12:03:13 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
#================================================
|
|
|
|
# Let CMake look in these directories for nested
|
|
|
|
# 'CMakeLists.txt' files to process
|
|
|
|
#================================================
|
|
|
|
|
|
|
|
############
|
|
|
|
# Binaries #
|
|
|
|
############
|
2008-03-11 15:57:54 +00:00
|
|
|
add_subdirectory(3d-viewer)
|
2008-05-17 19:24:22 +00:00
|
|
|
add_subdirectory(bitmaps)
|
2008-03-31 01:32:15 +00:00
|
|
|
add_subdirectory(common)
|
2008-03-11 15:57:54 +00:00
|
|
|
add_subdirectory(cvpcb)
|
|
|
|
add_subdirectory(eeschema)
|
|
|
|
add_subdirectory(gerbview)
|
|
|
|
add_subdirectory(kicad)
|
|
|
|
add_subdirectory(pcbnew)
|
|
|
|
add_subdirectory(polygon)
|
2008-05-30 18:06:21 +00:00
|
|
|
add_subdirectory(polygon/kbool/src)
|
2008-08-11 11:45:29 +00:00
|
|
|
|
|
|
|
#############
|
|
|
|
# Resources #
|
|
|
|
#############
|
2008-03-11 15:57:54 +00:00
|
|
|
add_subdirectory(demos)
|
|
|
|
add_subdirectory(internat)
|
|
|
|
add_subdirectory(template)
|
2008-03-18 21:16:49 +00:00
|
|
|
|
2008-08-11 11:45:29 +00:00
|
|
|
|
|
|
|
#================================================
|
|
|
|
# Installation parameters
|
|
|
|
#================================================
|
2008-12-20 08:14:33 +00:00
|
|
|
install(FILES INSTALL.txt
|
2008-08-11 11:45:29 +00:00
|
|
|
DESTINATION ${KICAD_DOCS}
|
|
|
|
COMPONENT resources)
|
2008-09-07 19:32:07 +00:00
|
|
|
install(FILES freeroute.jnlp
|
2008-08-11 11:45:29 +00:00
|
|
|
DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT resources)
|
2009-06-02 19:18:09 +00:00
|
|
|
###
|
|
|
|
# Install scripts
|
|
|
|
###
|
|
|
|
if(UNIX)
|
2009-06-21 13:37:27 +00:00
|
|
|
install(DIRECTORY scripts
|
|
|
|
DESTINATION ${KICAD_DOCS}
|
|
|
|
COMPONENT resources
|
|
|
|
PATTERN ".svn" EXCLUDE)
|
2009-06-02 19:18:09 +00:00
|
|
|
endif(UNIX)
|
2009-06-02 13:51:57 +00:00
|
|
|
###
|
|
|
|
# FreeDesktop .desktop and MIME resources
|
|
|
|
###
|
2008-03-18 21:16:49 +00:00
|
|
|
if(UNIX)
|
2009-06-21 13:37:27 +00:00
|
|
|
# Set paths
|
|
|
|
set(UNIX_MIME_DIR resources/linux/mime)
|
|
|
|
set(UNIX_MIMELNK_FILES ${UNIX_MIME_DIR}/mimelnk)
|
|
|
|
set(UNIX_MIME_FILES ${UNIX_MIME_DIR}/mime)
|
|
|
|
set(UNIX_ICONS_FILES ${UNIX_MIME_DIR}/icons)
|
|
|
|
set(UNIX_APPLICATIONS_FILES ${UNIX_MIME_DIR}/applications)
|
|
|
|
|
|
|
|
# Install Mimelnk directory
|
|
|
|
install(DIRECTORY ${UNIX_MIMELNK_FILES}
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share
|
|
|
|
COMPONENT resources
|
|
|
|
PATTERN ".svn" EXCLUDE)
|
|
|
|
|
|
|
|
# Install Mime directory
|
|
|
|
install(DIRECTORY ${UNIX_ICONS_FILES}
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share
|
|
|
|
COMPONENT resources
|
|
|
|
PATTERN ".svn" EXCLUDE)
|
|
|
|
|
|
|
|
# Install Icons
|
|
|
|
install(DIRECTORY ${UNIX_MIME_FILES}
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share
|
|
|
|
COMPONENT resources
|
|
|
|
PATTERN ".svn" EXCLUDE)
|
|
|
|
|
|
|
|
# Install Applications directory (.desktop files)
|
|
|
|
install(DIRECTORY ${UNIX_APPLICATIONS_FILES}
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share
|
|
|
|
COMPONENT resources
|
|
|
|
PATTERN ".svn" EXCLUDE)
|
2008-03-18 21:16:49 +00:00
|
|
|
endif(UNIX)
|