You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
298 B
9 lines
298 B
16 years ago
|
PROJECT(CHECK_LIBRARY_EXISTS)
|
||
|
|
||
|
|
||
|
ADD_DEFINITIONS(-DCHECK_FUNCTION_EXISTS=${CHECK_LIBRARY_EXISTS_FUNCTION})
|
||
|
LINK_DIRECTORIES(${CHECK_LIBRARY_EXISTS_LOCATION})
|
||
|
ADD_EXECUTABLE(CheckLibraryExists ${CHECK_LIBRARY_EXISTS_SOURCE})
|
||
|
TARGET_LINK_LIBRARIES(CheckLibraryExists ${CHECK_LIBRARY_EXISTS_LIBRARY})
|
||
|
|