Skip to content

Commit

Permalink
Add missed dep linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdawkins committed Aug 18, 2023
1 parent 64e6554 commit 692f127
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -776,10 +776,18 @@ if( VIAME_BUILD_DEPENDENCIES )
# Specifies internal arguments passed to all projects (CXX flag passdowns, etc)
include( common_args )

# Hard VIAME requirements
# Core dependencies for other projects
include( add_project_fletch )

# Add optional projects
if( VIAME_ENABLE_PYTHON )
include( add_project_python_deps )
endif()

if( WIN32 AND ( VIAME_ENABLE_KWIVER OR VIAME_ENABLE_SMQTK ) )
include( add_project_postgres )
endif()

# Add optional projects dependend on by other projects
if( VIAME_ENABLE_DARKNET )
include( add_project_darknet )
endif()
Expand All @@ -788,15 +796,11 @@ if( VIAME_BUILD_DEPENDENCIES )
include( add_project_burnout )
endif()

if( VIAME_ENABLE_PYTHON )
include( add_project_python_deps )
endif()

if( VIAME_ENABLE_SMQTK )
include( add_project_smqtk )
endif()

# Add core (required) kwiver requirement
# Add (usually required) kwiver requirement
if( VIAME_ENABLE_KWIVER )
include( add_project_kwiver )
endif()
Expand Down Expand Up @@ -842,10 +846,6 @@ if( VIAME_BUILD_DEPENDENCIES )
include( add_project_itk_extras )
endif()

if( WIN32 )
include( add_project_postgres )
endif()

# VIAME plugins, adds this project causing the below else() block to run
if( VIAME_ENABLE_VIAME_PLUGINS )
include( add_project_viame )
Expand Down Expand Up @@ -1036,4 +1036,4 @@ else()
)
install( SCRIPT ${CMAKE_BINARY_DIR}/viame-install-fixup.cmake )
endif()
endif()
endif()

0 comments on commit 692f127

Please sign in to comment.