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.
1 parent 8f1fc70 commit a2067b6Copy full SHA for a2067b6
.github/workflows/main.yaml
@@ -23,6 +23,6 @@ jobs:
23
- name: Test Java
24
run: mvn test
25
- name: Configure CMake
26
- run: cmake -B ${{github.workspace}}/build
+ run: cmake -DCXX_STANDARD=98 -B ${{github.workspace}}/build
27
- name: Test regxmllibc
28
run: ctest
CMakeLists.txt
@@ -11,8 +11,6 @@ include_directories( ${XercesC_INCLUDE_DIR}
11
file(GLOB_RECURSE SRC_FILES src/main/cpp/*.cpp src/main/cpp/*.h )
12
add_library(${PROJECT_NAME} ${SRC_FILES})
13
install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
14
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 98)
15
-
16
17
target_link_libraries ( ${PROJECT_NAME} ${XercesC_LIBRARY} )
18
0 commit comments