Skip to content

Commit ca98950

Browse files
committed
Fix broken target name in config
1 parent dbea7c6 commit ca98950

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

JlCxxConfig.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ find_package(Julia)
33

44
include(JlCxxConfigExports)
55

6-
get_target_property(CXX_OLD_INCLUDES JlCxx::jlcxx INTERFACE_INCLUDE_DIRECTORIES)
6+
get_target_property(CXX_OLD_INCLUDES JlCxx::cxxwrap_julia INTERFACE_INCLUDE_DIRECTORIES)
77

8-
set_target_properties(JlCxx::jlcxx PROPERTIES
8+
set_target_properties(JlCxx::cxxwrap_julia PROPERTIES
99
INTERFACE_INCLUDE_DIRECTORIES "${CXX_OLD_INCLUDES};${Julia_INCLUDE_DIRS}"
1010
INTERFACE_LINK_LIBRARIES "${Julia_LIBRARY}"
1111
)

include/jlcxx/jlcxx_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313

1414
#define JLCXX_VERSION_MAJOR 0
1515
#define JLCXX_VERSION_MINOR 2
16-
#define JLCXX_VERSION_PATCH 0
16+
#define JLCXX_VERSION_PATCH 1
1717

1818
#endif

0 commit comments

Comments
 (0)