9 lines
240 B
Text
9 lines
240 B
Text
![]() |
#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})
|