kicad/CMakeLists.txt

123 lines
4.1 KiB
CMake
Raw Normal View History

2008-03-11 15:57:54 +00:00
project(kicad)
2008-06-21 08:55:39 +00:00
if(NOT APPLE)
cmake_minimum_required(VERSION 2.4.6 FATAL_ERROR)
else(NOT APPLE)
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
endif(NOT APPLE)
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)
# Command line option to enable or disable building minizip. Minizip
# building is enabled by default. Use -DKICAD_MINZIP=OFF to disable
# building minizip.
2008-03-11 15:57:54 +00:00
option(KICAD_MINIZIP "enable/disable building minizip (default ON)" ON)
# Comment this out if you don't want to build with Python support.
# OPTION(KICAD_PYTHON "enable/disable building with Python support (default OFF)")
2007-12-11 21:02:05 +00:00
2008-03-31 01:32:15 +00:00
# Set flags for GCC.
2008-03-11 15:57:54 +00:00
if(CMAKE_COMPILER_IS_GNUCXX)
# 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")
# 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-12-25 20:48:58 +00:00
# Locations for install targets.
2008-03-11 15:57:54 +00:00
set(KICAD_BIN bin CACHE PATH "Location of KiCad binaries.")
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.
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)
2008-03-11 15:57:54 +00:00
if(WIN32)
# Like all variables, CMAKE_INSTALL_PREFIX can be over-ridden on the command line.
2008-03-11 15:57:54 +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.
set(KICAD_PLUGINS ${KICAD_BIN}/plugins CACHE PATH "Location of KiCad plugins.")
2008-03-11 15:57:54 +00:00
set(KICAD_DATA share CACHE PATH "Location of KiCad data files.")
2008-03-31 01:32:15 +00:00
set(KICAD_DOCS doc CACHE PATH "Location of KiCad documentation files.")
2008-03-11 15:57:54 +00:00
endif(WIN32)
2008-03-31 01:32:15 +00:00
set(KICAD_DEMOS ${KICAD_DATA}/demos CACHE PATH "Location of KiCad demo files.")
set(KICAD_INTERNAT ${KICAD_DATA}/internat CACHE PATH "Location of KiCad i18n files.")
set(KICAD_TEMPLATE ${KICAD_DATA}/template CACHE PATH "Location of KiCad template files.")
mark_as_advanced(KICAD_BIN KICAD_PLUGINS KICAD_DATA KICAD_DOCS
KICAD_DEMOS KICAD_INTERNAT KICAD_TEMPLATE)
2008-03-11 15:57:54 +00:00
# Find libraries that are needed to build KiCad.
include(CheckFindPackageResult)
2008-03-11 15:57:54 +00:00
find_package(OpenGL)
check_find_package_result(OPENGL_FOUND "OpenGL")
2008-03-11 15:57:54 +00:00
find_package(Boost)
check_find_package_result(Boost_FOUND "Boost")
# 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-03-11 15:57:54 +00:00
set(wxWidgets_USE_LIBS base core adv gl html net)
find_package(wxWidgetsCVS)
check_find_package_result(wxWidgets_FOUND "wxWidgets")
# Include wxWidgets macros.
2008-03-11 15:57:54 +00:00
include(${wxWidgets_USE_FILE})
# Include MinGW resource compiler.
include(MinGWResourceCompiler)
2008-06-06 12:39:00 +00:00
# Automagically create version header file.
# does not work with mingw for me (jpc)
if(UNIX)
2008-06-06 12:39:00 +00:00
include(CreateSVNVersionHeader)
create_svn_version_header()
endif(UNIX)
# Include paths.
2008-03-11 15:57:54 +00:00
include_directories(
${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/share
${CMAKE_BINARY_DIR})
# CMake will look in these dirs for nested 'CMakeLists.txt' files.
# 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)
add_subdirectory(polygon/kbool/src)
# Resources.
2008-03-11 15:57:54 +00:00
add_subdirectory(demos)
add_subdirectory(internat)
add_subdirectory(template)
2008-03-31 01:32:15 +00:00
install(FILES install.txt DESTINATION ${KICAD_DOCS}
COMPONENT resources)
install(FILES freeroute.jnlp DESTINATION ${KICAD_BIN}
COMPONENT resources)
if(UNIX)
2008-03-31 01:32:15 +00:00
install(FILES share/kicad.desktop
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications
COMPONENT resources)
install(FILES bitmaps/kicad.png
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pixmaps
COMPONENT resources)
endif(UNIX)