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.
16 lines
315 B
16 lines
315 B
find_path(Bink_INCLUDE_DIR bink.h |
|
C:/BinkW32 |
|
) |
|
|
|
find_library(Bink_LIBRARY NAMES binkw32 |
|
PATHS C:/BinkW32 |
|
) |
|
|
|
if(Bink_INCLUDE_DIR AND Bink_LIBRARY) |
|
set(Bink_SDK_AVAILABLE TRUE) |
|
add_definitions(-DBINK_SDK_AVAILABLE) |
|
else() |
|
set(Bink_SDK_AVAILABLE FALSE) |
|
endif() |
|
|
|
set(Bink_LIBRARIES ${Bink_LIBRARY})
|
|
|