Mercurial > pub > dyncall > bindings
comparison lua/luadyncall/buildsys/cmake/Modules/FindDynCall.cmake @ 0:0cfcc391201f
initial from svn dyncall-1745
author | Daniel Adler |
---|---|
date | Thu, 19 Mar 2015 22:26:28 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0cfcc391201f |
---|---|
1 find_path(DYNCALL_INCLUDE_DIR NAMES dyncall.h) | |
2 find_library(DYNCALL_LIBRARY dyncall_s) | |
3 include(FindPackageHandleStandardArgs) | |
4 find_package_handle_standard_args(DYNCALL DEFAULT_MSG DYNCALL_LIBRARY DYNCALL_INCLUDE_DIR) | |
5 if(DYNCALL_FOUND) | |
6 set(DYNCALL_LIBRARIES ${DYNCALL_LIBRARY}) | |
7 set(DYNCALL_INCLUDE_DIRS ${DYNCALL_INCLUDE_DIR}) | |
8 endif(DYNCALL_FOUND) | |
9 mark_as_advanced(DYNCALL_INCLUDE_DIR DYNCALL_LIBRARY) | |
10 | |
11 | |
12 |