Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
71809b35
Commit
71809b35
authored
Sep 26, 2019
by
Thomas White
Browse files
Restore CMake stuff for PinkIndexer
See
3fe28041
where it was temporarily removed.
parent
a667578f
Changes
1
Hide whitespace changes
Inline
Side-by-side
libcrystfel/CMakeLists.txt
View file @
71809b35
...
...
@@ -2,6 +2,7 @@ project(libcrystfel VERSION ${CRYSTFEL_SHORT_VERSION} LANGUAGES C)
find_package
(
Curses
)
find_package
(
XGANDALF
)
find_package
(
PINKINDEXER
)
find_package
(
FDIP
)
find_package
(
ZLIB REQUIRED
)
find_package
(
FLEX REQUIRED
)
...
...
@@ -154,6 +155,11 @@ if (FDIP_FOUND)
target_link_libraries
(
${
PROJECT_NAME
}
PRIVATE
${
FDIP_LIBRARIES
}
)
endif
(
FDIP_FOUND
)
if
(
PINKINDEXER_FOUND
)
target_include_directories
(
${
PROJECT_NAME
}
PRIVATE
${
PINKINDEXER_INCLUDES
}
)
target_link_libraries
(
${
PROJECT_NAME
}
PRIVATE
${
PINKINDEXER_LIBRARIES
}
)
endif
(
PINKINDEXER_FOUND
)
if
(
FFTW_FOUND
)
target_include_directories
(
${
PROJECT_NAME
}
PRIVATE
${
FFTW_INCLUDE_DIRS
}
)
target_link_libraries
(
${
PROJECT_NAME
}
PRIVATE
${
FFTW_LDFLAGS
}
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment