Выделил переиспользуемые модули из проекта.
This commit is contained in:
parent
3fe2a87e35
commit
7c83d9c93e
15 changed files with 287 additions and 207 deletions
|
@ -3,8 +3,15 @@ project(image_test_cpp)
|
|||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_executable(image_test_cpp main.cpp
|
||||
bmpimage.h
|
||||
bmpimage.cpp
|
||||
psf.cpp
|
||||
psf.h)
|
||||
add_subdirectory(font-lib)
|
||||
add_subdirectory(image-lib)
|
||||
add_subdirectory(utils-lib)
|
||||
|
||||
add_executable(image_test_cpp main.cpp)
|
||||
|
||||
target_link_libraries(image_test_cpp
|
||||
PRIVATE
|
||||
font-lib
|
||||
image-lib
|
||||
utils-lib
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue