16 lines
732 B
CMake
16 lines
732 B
CMake
|
###############################################################################
|
||
|
## Author: Shaun reserved ##
|
||
|
## Legal: All Content (c) 2020 Shaun Reed, all rights reserved ##
|
||
|
## ##
|
||
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
||
|
##############################################################################
|
||
|
|
||
|
# # Create a variable to reference our source code
|
||
|
# set(DRIVER_SRC driver.cpp)
|
||
|
|
||
|
# # Add the executable to the build list
|
||
|
# add_executable(driver ${DRIVER_SRC})
|
||
|
|
||
|
# # Link custom libraries to our executable
|
||
|
# target_link_libraries(driver lib-datastruct)
|