mirror of https://github.com/CGAL/cgal
Reorder the cmake directive to retreive the same original order
This commit is contained in:
parent
7717bc83b4
commit
6820e1b5c4
|
|
@ -21,16 +21,19 @@ use_essential_libs()
|
|||
|
||||
if (CGAL_HEADER_ONLY)
|
||||
cache_set(CGAL_ImageIO_3RD_PARTY_INCLUDE_DIRS ${CGAL_ImageIO_3RD_PARTY_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
else()
|
||||
include_directories( SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS} ${CGAL_ImageIO_3RD_PARTY_INCLUDE_DIRS} .)
|
||||
link_directories ( ${CGAL_LIBRARIES_DIR} ${CGAL_3RD_PARTY_LIBRARIES_DIRS} )
|
||||
endif()
|
||||
|
||||
collect_cgal_library( CGAL_ImageIO "")
|
||||
|
||||
if (NOT CGAL_HEADER_ONLY)
|
||||
add_definitions( ${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_ImageIO_3RD_PARTY_DEFINITIONS} )
|
||||
include_directories( SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS} ${CGAL_ImageIO_3RD_PARTY_INCLUDE_DIRS} .)
|
||||
link_directories ( ${CGAL_LIBRARIES_DIR} ${CGAL_3RD_PARTY_LIBRARIES_DIRS} )
|
||||
|
||||
add_dependencies( CGAL_ImageIO CGAL )
|
||||
|
||||
add_definitions( ${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_ImageIO_3RD_PARTY_DEFINITIONS} )
|
||||
|
||||
# CGAL_ImageIO only depends on CGAL in DEBUG, but we still link it
|
||||
# in both build types.
|
||||
target_link_libraries( CGAL_ImageIO CGAL ${CGAL_3RD_PARTY_LIBRARIES} ${CGAL_ImageIO_3RD_PARTY_LIBRARIES} )
|
||||
|
|
|
|||
|
|
@ -84,15 +84,16 @@ endif(CGAL_HEADER_ONLY)
|
|||
collect_cgal_library( CGAL_Qt5 "${additional_files}")
|
||||
|
||||
if (NOT CGAL_HEADER_ONLY)
|
||||
add_definitions ( ${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_Qt5_3RD_PARTY_DEFINITIONS} )
|
||||
|
||||
qt5_use_modules(CGAL_Qt5 OpenGL Svg)
|
||||
|
||||
add_dependencies( CGAL_Qt5 CGAL )
|
||||
|
||||
# CGAL_Qt5 only depends on CGAL in DEBUG, but we still link it in
|
||||
# both build types.
|
||||
target_link_libraries( CGAL_Qt5 CGAL ${CGAL_3RD_PARTY_LIBRARIES} ${CGAL_Qt5_3RD_PARTY_LIBRARIES} )
|
||||
|
||||
qt5_use_modules(CGAL_Qt5 OpenGL Svg)
|
||||
|
||||
add_dependencies( CGAL_Qt5 CGAL )
|
||||
add_definitions ( ${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_Qt5_3RD_PARTY_DEFINITIONS} )
|
||||
|
||||
else()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue