Skip to content

Commit

Permalink
Merge pull request #5 from Kelvinrr/master
Browse files Browse the repository at this point in the history
CMakeLists had error in install line
  • Loading branch information
jlaura authored Oct 25, 2018
2 parents 195d8db + 0aad96b commit 8c54605
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if(WIN32)
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
else()
message(${CMAKE_INSTALL_LIBDIR})
install(TARGETS csmapi LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
install(FILES ${HEADER_FILES} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/csm)
message(STATUS "CMAKE INSTALL LIBDIR: ${CMAKE_INSTALL_PREFIX}")
install(TARGETS csmapi LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
install(FILES ${HEADER_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/csm)
endif()

0 comments on commit 8c54605

Please sign in to comment.