refactor into lib/app
This commit is contained in:
15
CMakeLists.txt
Normal file
15
CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
# CMakeLists.txt
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
project(gddr6_project)
|
||||
|
||||
add_subdirectory(lib)
|
||||
add_subdirectory(app)
|
||||
|
||||
install(TARGETS gddr6
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
||||
)
|
||||
|
||||
install(TARGETS gddr6_lib
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
|
||||
)
|
||||
Reference in New Issue
Block a user