Skip to content

Commit 87dcca8

Browse files
committed
Increase oatpp version to 0.19.12
1 parent 6aa37e9 commit 87dcca8

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

book-service/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ target_include_directories(${project_name}-lib PUBLIC src)
2525

2626
## link libs
2727

28-
find_package(oatpp 0.19.11 REQUIRED)
29-
find_package(oatpp-swagger 0.19.11 REQUIRED)
28+
find_package(oatpp 0.19.12 REQUIRED)
29+
find_package(oatpp-swagger 0.19.12 REQUIRED)
3030

3131
target_link_libraries(${project_name}-lib
3232
PUBLIC oatpp::oatpp

facade/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ target_include_directories(${project_name}-lib PUBLIC src)
2727

2828
## link libs
2929

30-
find_package(oatpp 0.19.11 REQUIRED)
31-
find_package(oatpp-swagger 0.19.11 REQUIRED)
30+
find_package(oatpp 0.19.12 REQUIRED)
31+
find_package(oatpp-swagger 0.19.12 REQUIRED)
3232

3333
target_link_libraries(${project_name}-lib
3434
PUBLIC oatpp::oatpp

monolith/all-services/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ add_executable(${project_name}-exe
1010
App.cpp
1111
)
1212

13-
## define path to swagger-ui res folder
14-
add_definitions(-DOATPP_SWAGGER_RES_PATH="${OATPP_BASE_DIR}/bin/oatpp-swagger/res")
15-
1613
set(USER_SERVICE_DIR ${CMAKE_CURRENT_LIST_DIR}/../../user-service/build)
1714
set(BOOK_SERVICE_DIR ${CMAKE_CURRENT_LIST_DIR}/../../book-service/build)
1815
set(FACADE_SERVICE_DIR ${CMAKE_CURRENT_LIST_DIR}/../../facade/build)
@@ -44,8 +41,11 @@ target_link_libraries(${project_name}-exe
4441
PUBLIC ${FACADE_LIBRARY}
4542
)
4643

47-
find_package(oatpp 0.19.11 REQUIRED)
48-
find_package(oatpp-swagger 0.19.11 REQUIRED)
44+
find_package(oatpp 0.19.12 REQUIRED)
45+
find_package(oatpp-swagger 0.19.12 REQUIRED)
46+
47+
## define path to swagger-ui res folder
48+
add_definitions(-DOATPP_SWAGGER_RES_PATH="${OATPP_BASE_DIR}/bin/oatpp-swagger/res")
4949

5050
target_link_libraries(${project_name}-exe
5151
PUBLIC oatpp::oatpp

user-service/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ target_include_directories(${project_name}-lib PUBLIC src)
2525

2626
## link libs
2727

28-
find_package(oatpp 0.19.11 REQUIRED)
29-
find_package(oatpp-swagger 0.19.11 REQUIRED)
28+
find_package(oatpp 0.19.12 REQUIRED)
29+
find_package(oatpp-swagger 0.19.12 REQUIRED)
3030

3131
target_link_libraries(${project_name}-lib
3232
PUBLIC oatpp::oatpp

0 commit comments

Comments
 (0)