"tests/vscode:/vscode.git/clone" did not exist on "b4cbbd5ed2691d51100aa2991d7ad3d82e50cd70"
Commit 2f3821ca authored by Jesse Beder's avatar Jesse Beder
Browse files

Fixed location of yaml-cpp.pc file

parent 980c4cb0
...@@ -51,8 +51,9 @@ install( ...@@ -51,8 +51,9 @@ install(
) )
if(UNIX) if(UNIX)
configure_file("yaml-cpp.pc.cmake" yaml-cpp.pc @ONLY) set(PC_FILE ${CMAKE_BINARY_DIR}/yaml-cpp.pc)
install(FILES yaml-cpp.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) configure_file("yaml-cpp.pc.cmake" ${PC_FILE} @ONLY)
install(FILES ${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
endif(UNIX) endif(UNIX)
add_subdirectory (yaml-reader) add_subdirectory (yaml-reader)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment