codebase
/
stimlib
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
3
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
a61d71957661d8e139da19613e7d1e15c019b617
Authored by
Pavel Govyadinov
2015-06-18 14:55:10 -0500
1 parent
2a18be6d
added FindSTIM.cmake file
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
FindSTIM.cmake
Inline
Side-by-side
FindSTIM.cmake
0 → 100644
Wrap text
Show/Hide comments
View file @
a61d719
1
+include(FindPackageHandleStandardArgs)
2
+
3
+set(STIM_INCLUDE_DIR $ENV{STIMLIB_PATH})
4
+
5
+find_package_handle_standard_args(STIM DEFAULT_MSG STIM_INCLUDE_DIR)
6
+
7
+if(STIM_FOUND)
8
+ set(STIM_INCLUDE_DIRS ${STIM_INCLUDE_DIR})
9
+endif()
0
10
\ No newline at end of file
...
...