Skip to content

Commit

Permalink
separate CMakesLists for cli
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Nov 10, 2024
1 parent 5c65b51 commit 877040f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cli/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.22)
project(genogrove_cli VERSION 0.1.0)

add_executable(genogrove_cli main.cpp)
target_link_libraries(genogrove_cli genogrove::genogrove)

# set the output directory for the executable
set_target_properties(genogrove_cli PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
)



0 comments on commit 877040f

Please sign in to comment.