Skip to content

Commit 198ad31

Browse files
authored
update for 0.10.1 release (#41)
* update for 0.10.1 release * update for 0.10.1 release * update for 0.10.1 release
1 parent c45dd40 commit 198ad31

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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.
2727
list(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

143141
target_compile_features(cosimc PRIVATE "cxx_std_17")
144142
target_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)
146144
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
147145
target_link_libraries(cosimc PUBLIC stdc++)
148146
endif()

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)