| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- project( QCC_IO_LIB )
- add_library( ${PROJECT_NAME} SHARED )
- include( cmake/GDALSupport.cmake )
- add_subdirectory( include )
- add_subdirectory( src )
- add_subdirectory( ui )
- option( OPTION_USE_DXF_LIB "Build with Ribbonsoft's DXF Lib (AutoCAD DXF files support)" ON )
- if( ${OPTION_USE_DXF_LIB} )
- set( DXF_LIB_DIR "extern/dxflib" CACHE PATH "DXF lib path" )
- add_subdirectory( "${DXF_LIB_DIR}" )
- target_link_libraries( ${PROJECT_NAME} dxflib )
- endif()
- option( OPTION_USE_SHAPE_LIB "Build with ShapeLib (SHP files support)" ON )
- if( ${OPTION_USE_SHAPE_LIB} )
- set( SHAPELIB_LIB_DIR "extern/shapelib" CACHE PATH "shapelib lib path" )
- add_subdirectory( "${SHAPELIB_LIB_DIR}" )
- target_link_libraries( ${PROJECT_NAME} shapelib )
- endif()
- target_link_libraries( ${PROJECT_NAME}
- QCC_DB_LIB
- )
- if( OPTION_USE_GDAL )
- target_link_GDAL( ${PROJECT_NAME} )
- endif()
- # Add custom preprocessor definitions
- target_compile_definitions( ${PROJECT_NAME} PRIVATE QCC_IO_LIBRARY_BUILD )
- set_target_properties( ${PROJECT_NAME} PROPERTIES
- AUTOUIC ON # FIXME Remove after everything has moved to targets and we can set it globally
- CXX_VISIBILITY_PRESET hidden
- )
- if ( BUILD_TESTING )
- add_subdirectory( test )
- endif()
- InstallSharedLibrary( TARGET ${PROJECT_NAME} )
|