We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d7a2ca + e1d0831 commit 1d3ae5aCopy full SHA for 1d3ae5a
CMakeLists.txt
@@ -49,6 +49,8 @@ target_sources(${LIBNAME}
49
PRIVATE
50
src/register_types.cpp
51
src/register_types.h
52
+ src/example_class.cpp
53
+ src/example_class.h
54
)
55
56
# Fetch a list of the xml files to use for documentation and add to our target
@@ -63,6 +65,9 @@ endif()
63
65
64
66
target_link_libraries(${LIBNAME} PRIVATE godot-cpp)
67
68
+# Require at least C++17 for this target
69
+set_property(TARGET ${LIBNAME} PROPERTY CXX_STANDARD 17)
70
+
71
set_target_properties(${LIBNAME}
72
PROPERTIES
73
# The generator expression here prevents msvc from adding a Debug or Release subdir.
0 commit comments