mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-12-18 20:44:35 +03:00
add note for executables
This commit is contained in:
@@ -37,8 +37,9 @@ FILE(GLOB_RECURSE sources "${CMAKE_CURRENT_SOURCE_DIR}/source/*.cpp")
|
|||||||
|
|
||||||
# ---- Create library ----
|
# ---- Create library ----
|
||||||
|
|
||||||
# Note: for single header libraries use the following instead:
|
# Notes:
|
||||||
# add_library(Greeter INTERFACE)
|
# for single header libraries use `add_library(Greeter INTERFACE)` instead
|
||||||
|
# To create an executable use `add_executable(Greeter ${headers} ${sources})`
|
||||||
add_library(Greeter ${headers} ${sources})
|
add_library(Greeter ${headers} ${sources})
|
||||||
|
|
||||||
# Note: for single header libraries use the following instead:
|
# Note: for single header libraries use the following instead:
|
||||||
|
|||||||
Reference in New Issue
Block a user