Skip to content

Commit

Permalink
Merge pull request #3 from AliceO2Group/fix_for_tcl_mac
Browse files Browse the repository at this point in the history
Fix for TCL on Mac
  • Loading branch information
awegrzyn authored Dec 13, 2017
2 parents 917a267 + 4b8670a commit 689b00b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,6 @@ if (TCL_FOUND)
src/Configuration_tcl_wrap.cxx
)
set(LIBRARY_NAME tclConfiguration)
set(BUCKET_NAME o2_common_with_tcl_bucket)
O2_GENERATE_LIBRARY()
endif ()
29 changes: 16 additions & 13 deletions cmake/CommonDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,26 @@ find_package(TCL)


o2_define_bucket(
NAME
o2_common_bucket
NAME
o2_common_bucket

DEPENDENCIES
${Boost_PROGRAM_OPTIONS_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
${Boost_SYSTEM_LIBRARY}
pthread
DEPENDENCIES
${Boost_PROGRAM_OPTIONS_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
${Boost_SYSTEM_LIBRARY}
pthread

SYSTEMINCLUDE_DIRECTORIES
${Boost_INCLUDE_DIRS}
SYSTEMINCLUDE_DIRECTORIES
${Boost_INCLUDE_DIRS}
)



o2_define_bucket(
NAME
o2_dataformat_bucket
NAME
o2_common_with_tcl_bucket

SYSTEMINCLUDE_DIRECTORIES
${Boost_INCLUDE_DIRS}
DEPENDENCIES
o2_common_bucket
${TCL_LIBRARY}
)

0 comments on commit 689b00b

Please sign in to comment.