1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-25 04:47:26 +01:00

fixing missing dependency on compilation order

add a dependency to compile civetweb before uts-server if civetweb
is bundled with uts-server.
This commit is contained in:
kakwa 2016-12-04 15:08:46 +01:00
parent 294e22adc1
commit c697886620

View File

@ -75,3 +75,8 @@ target_link_libraries(uts-server
INSTALL(TARGETS uts-server
RUNTIME DESTINATION bin
)
if(BUNDLE_CIVETWEB)
add_dependencies(uts-server civetweb)
endif(BUNDLE_CIVETWEB)