summaryrefslogtreecommitdiff
path: root/src/Model/CMakeLists.txt
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-04-29 21:18:06 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-04-29 21:18:06 +0200
commitad216d86f6573e3575e85f3a2941f6f34b5b1c0e (patch)
treec8a0b87180cc188ff2ed8ce69101f2f7adf03efc /src/Model/CMakeLists.txt
parente241abc9df586cce683d6ae89e1d02c13084a10f (diff)
Add missing dependency in CMakeList.txt
Diffstat (limited to 'src/Model/CMakeLists.txt')
-rw-r--r--src/Model/CMakeLists.txt10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/Model/CMakeLists.txt b/src/Model/CMakeLists.txt
index c9cfb6e..c685c7a 100644
--- a/src/Model/CMakeLists.txt
+++ b/src/Model/CMakeLists.txt
@@ -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)