Skip to content

Commit

Permalink
fixing ubuntu CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jholloc committed Dec 4, 2023
1 parent 0cfbe48 commit ddceb70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions source/client2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ endif()

set( CLIENT_OBJS
$<TARGET_OBJECTS:client2-objects>
$<TARGET_OBJECTS:c_api-objects>
$<TARGET_OBJECTS:clientserver-client-objects>
$<TARGET_OBJECTS:cache-objects>
$<TARGET_OBJECTS:logging-client-objects>
Expand All @@ -80,6 +81,7 @@ set( CLIENT_OBJS

set( FATCLIENT_OBJS
$<TARGET_OBJECTS:fatclient2-objects>
$<TARGET_OBJECTS:fatc_api-objects>
$<TARGET_OBJECTS:fatserver-objects>
$<TARGET_OBJECTS:fatclientserver-objects>
$<TARGET_OBJECTS:structures-server-objects>
Expand Down
4 changes: 2 additions & 2 deletions source/wrappers/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ uda_lib_names = '@UDA_LIBS@'.split(';') if '@UDA_LIBS@' else []
build_fat = os.environ.get('UDA_FAT_PYTHON', False)
if build_fat:
uda_libs = [
'libfat@PROJECT_NAME@_client2.' + stalib_ext,
'libfat@PROJECT_NAME@_client.' + stalib_ext,
'lib@PROJECT_NAME@_plugins.' + stalib_ext,
] + ['lib@PROJECT_NAME@_' + name + '.' + stalib_ext for name in uda_lib_names]
extra_libs = ['xml2', 'pq']
extra_macros = [('FATCLIENT', None)]
else:
uda_libs = [
'lib@PROJECT_NAME@_client2.' + stalib_ext,
'lib@PROJECT_NAME@_client.' + stalib_ext,
] + ['lib@PROJECT_NAME@_' + name + '.' + stalib_ext for name in uda_lib_names]
extra_libs = '@EXTRA_LIBS@'.split(';') if '@EXTRA_LIBS@' else []
extra_macros = []
Expand Down

0 comments on commit ddceb70

Please sign in to comment.