Skip to content
Snippets Groups Projects
Select Git revision
  • 8d610fea36fdf554424b6aa709effb4e82a7ff44
  • master default protected
  • develop protected
  • cmake_boost_refactor
  • ubuntu_ci
  • mmtf
  • non-orthogonal-maps
  • no_boost_filesystem
  • data_viewer
  • 2.11.1
  • 2.11.0
  • 2.10.0
  • 2.9.3
  • 2.9.2
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.6.0-rc4
  • 2.6.0-rc3
  • 2.6.0-rc2
  • 2.6.0-rc
  • 2.5.0
  • 2.5.0-rc2
  • 2.5.0-rc
  • 2.4.0
  • 2.4.0-rc2
29 results

ost_startup.py.in

Blame
  • FindSQLITE3.cmake 735 B
    # Once done this will define
    # - Find SQLite3
    # Find the native SQLite3 includes and library
    # 
    #  SQLITE3_INCLUDE_DIRS  - SQLite3 include dir.
    #  SQLITE3_LIBRARIES     - List of libraries when using SQLite3.
    #  SQLITE3_FOUND         - True if SQLite3 found.
    
    find_path(SQLITE3_INCLUDE_DIR sqlite3.h)
    find_library(SQLITE3_LIBRARY NAMES sqlite3)
    
    # handle the QUIETLY and REQUIRED arguments and set SQLITE3_FOUND to TRUE if 
    # all listed variables are TRUE
    include (FindPackageHandleStandardArgs)
    find_package_handle_standard_args (SQLITE3 DEFAULT_MSG SQLITE3_LIBRARY SQLITE3_INCLUDE_DIR)
    
    mark_as_advanced(SQLITE3_LIBRARY SQLITE3_INCLUDE_DIR)
    
    SET(SQLITE3_INCLUDE_DIRS ${SQLITE3_INCLUDE_DIR})
    SET(SQLITE3_LIBRARIES ${SQLITE3_LIBRARY})