Skip to content

Commit

Permalink
- fix for linux_nightly_build
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21565 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Marcus Walther committed Jul 18, 2014
1 parent 996d143 commit 0c1f5dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SimulationRuntime/cpp/CMakeLists.txt
Expand Up @@ -122,11 +122,11 @@ SET(Boost_USE_STATIC_RUNTIME OFF)

# The optional boost libraries must be searched separately, otherwise no library is found if just one is missing.
# Additionaly the Boost_LIBRARIES variable is overwritten each time find_package(Boost ...) is called, thus it must be rescued
find_package(Boost COMPONENTS log log_setup)
find_package(Boost 1.54 COMPONENTS log log_setup)
SET(Boost_LIBRARIES_TMP ${Boost_LIBRARIES_TMP} ${Boost_LIBRARIES})
find_package(Boost COMPONENTS thread)
find_package(Boost 1.54 COMPONENTS thread)
SET(Boost_LIBRARIES_TMP ${Boost_LIBRARIES_TMP} ${Boost_LIBRARIES})
find_package(Boost COMPONENTS atomic)
find_package(Boost 1.54 COMPONENTS atomic)
SET(Boost_LIBRARIES_TMP ${Boost_LIBRARIES_TMP} ${Boost_LIBRARIES})
find_package(Threads)

Expand Down

0 comments on commit 0c1f5dc

Please sign in to comment.