cmake语法学习

cmake_minimum_required(VERSION 3.5)

project(hello_library)

############################################################
# Create a library
############################################################

#Generate the static library from the library sources
add_library(hello_library STATIC
    src/Hello.cpp
)

target_include_directories(hello_library
    PUBLIC 
        ${PROJECT_SOURCE_DIR}/include
)


############################################################
# Create an executable
############################################################

# Add an executable with the above sources
add_executable(hello_binary 
    src/main.cpp
)

# link the new hello_library target with the hello_binary target
target_link_libraries( hello_binary
    PRIVATE 
        hello_library
)

*

add_library(hello_library STATIC

         src/Hello.cpp

)

- hello_library is the library file name

- STATIC must be upper case, and it means to generate a static library. The suffix is *.o in Ubuntu.

- src/Hello.cpp

原文地址:https://www.cnblogs.com/alexYuin/p/12773341.html