Add missing dependency in CMakeList.txt

This commit is contained in:
manzerbredes 2015-04-29 21:18:06 +02:00
parent e241abc9df
commit ad216d86f6
4 changed files with 5 additions and 11 deletions

View file

@ -1,8 +1,2 @@
#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})
#Make Model lib
add_library(Model Grid.cpp Cell.cpp Game.cpp)