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.
 
 
 
 
 
 

12 lines
385 B

link_directories(${PROJECT_BINARY_DIR}/common ${PROJECT_BINARY_DIR}/hfs)
#set(COREFOUNDATION_LIBRARY CoreFoundation)
IF (APPLE)
FIND_LIBRARY(COREFOUNDATION_LIBRARY CoreFoundation)
ENDIF (APPLE)
add_executable(emf_decrypter emf_decrypter.c emf_init.c)
target_link_libraries (emf_decrypter hfs common crypto ${COREFOUNDATION_LIBRARY})
install(TARGETS emf_decrypter DESTINATION .)