diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-20 13:28:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 13:28:04 -0400 |
commit | 1e5cef94bc3bc084e7b4ead7482016fda2881cd8 (patch) | |
tree | b2ed5eb3598e8f7c6200647ac3fb187b1990eb50 /src/CMakeLists.txt | |
parent | e97d8f3cd405970c74d44b0ded87b1954fe0f2ba (diff) | |
parent | 4f98864eb2781a8635e94d98f550100b1fa4add2 (diff) |
Merge pull request #240 from nwellnhof/add-cmake-include
Include GNUInstallDirs in src/CMakeLists.txt
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 148cf78..d5a1936 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,6 +2,8 @@ if(${CMAKE_VERSION} VERSION_GREATER "3.3") cmake_policy(SET CMP0063 NEW) endif() +include(GNUInstallDirs) + set(LIBRARY "libcmark") set(STATICLIBRARY "libcmark_static") set(HEADERS |