2P11/src/Model/CMakeLists.txt

9 lines
240 B
Text
Raw Normal View History

2015-04-29 19:34:01 +02:00
#Retrieve crypto++ libraries
get_property(SFML_LIBRARIES GLOBAL PROPERTY SFML_LIBRARIES)
#Make CryptClass lib
add_library(Model ./Cell.cpp ./Game.cpp ./Grid.cpp)
#Add crypto++ to CryptClass
target_link_libraries(Model ${SFML_LIBRARIES})