2023-06-22 00:22:59 -07:00
|
|
|
add_executable(victoriafalls
|
|
|
|
victoriafalls.cpp)
|
|
|
|
|
|
|
|
target_include_directories(victoriafalls
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/include")
|
|
|
|
|
|
|
|
target_link_libraries(victoriafalls
|
|
|
|
glacier
|
2023-06-26 11:56:09 -07:00
|
|
|
mammoth
|
2023-06-22 00:22:59 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(victoriafalls PROPERTIES
|
|
|
|
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${BASE_COMPILE_FLAGS}"
|
|
|
|
LINK_FLAGS "${CMAKE_EXE_LINK_FLAGS} ${BASE_LINK_FLAGS}"
|
|
|
|
)
|