File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ option(LIBCOSIMC_USING_CONAN "Whether Conan is used for package management" OFF)
2525
2626# Our custom CMake scripts go in the cmake/ subdirectory.
2727list (INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR} /cmake" )
28- list (APPEND CMAKE_MODULE_PATH "${CMAKE_BINARY_DIR} " )
29- list (APPEND CMAKE_PREFIX_PATH "${CMAKE_BINARY_DIR} " )
3028
3129# Use a common output directory for all targets.
3230# The main purpose of this is to ensure that the DLLs and test executables
@@ -142,7 +140,7 @@ add_library(cosimc "include/cosim.h" "src/cosim.cpp" ${generatedSourcesFull})
142140
143141target_compile_features (cosimc PRIVATE "cxx_std_17" )
144142target_include_directories (cosimc PUBLIC "$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR} /include>" )
145- target_link_libraries (cosimc PUBLIC libcosim::libcosim Boost::fiber)
143+ target_link_libraries (cosimc PUBLIC libcosim::cosim Boost::fiber)
146144if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
147145 target_link_libraries (cosimc PUBLIC stdc++)
148146endif ()
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ class LibCosimCConan(ConanFile):
1414 "revision" : "auto"
1515 }
1616 settings = "os" , "compiler" , "build_type" , "arch"
17- generators = "cmake" , "cmake_find_package" , " virtualrunenv"
17+ generators = "cmake" , "virtualrunenv"
1818 requires = (
19- "libcosim/0.10.0 @osp/stable"
19+ "libcosim/0.10.1 @osp/stable"
2020 )
2121
2222 def set_version (self ):
You can’t perform that action at this time.
0 commit comments