2019-07-21 00:40:44 -04:00
|
|
|
###############################################################################
|
2021-04-27 23:42:12 -04:00
|
|
|
## Author: Shaun Reed ##
|
2022-01-31 08:51:50 -05:00
|
|
|
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
|
2021-04-27 23:42:12 -04:00
|
|
|
## ##
|
2019-07-21 00:40:44 -04:00
|
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
|
|
|
##############################################################################
|
|
|
|
## This directory is for storing / compiling our executable code
|
|
|
|
|
|
|
|
# Create a reference / variable to refer to our source code
|
|
|
|
set(APP_SRC say-hello.cpp)
|
|
|
|
|
|
|
|
# Add our executable, naming it and linking it to our source code
|
2022-01-31 08:51:50 -05:00
|
|
|
add_executable(say-hello ${APP_SRC})
|
2019-07-21 00:40:44 -04:00
|
|
|
|
|
|
|
# Link to our custom library, defined in c-cmake/src/
|
2022-01-31 08:51:50 -05:00
|
|
|
target_link_libraries(say-hello lib-klips)
|
2019-07-21 00:40:44 -04:00
|
|
|
|