Skip to content

Commit

Permalink
Fix INTERFACE_INCLUDE_DIRECTORIES
Browse files Browse the repository at this point in the history
Update testing document
  • Loading branch information
myd7349 committed Jul 28, 2019
1 parent 376c417 commit 8144f1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CPackLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ SET(CPACK_PACKAGE_VENDOR "KjellKod")

INSTALL( TARGETS g3logger
EXPORT g3logger-targets
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT libraries
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT libraries
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT libraries
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
COMPONENT libraries)
)

INSTALL( FILES ${HEADER_FILES}
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/g3log
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ By default, tests will not be built. To enable unit testing, you should turn on
Suppose the build process has completed, then you can run the tests with:
```
ctest . -C Release
ctest -C Release
```
or:
```
Expand Down

0 comments on commit 8144f1d

Please sign in to comment.