2022-06-12 10:44:32 +08:00

14 lines
280 B
CMake

#设置 BINARY 为项目名IndexProject
set(BINARY ${CMAKE_PROJECT_NAME})
file(GLOB_RECURSE SOURCES LIST_DIRECTORIES true *.h *.c)
set(SOURCES ${SOURCES})
# support <math.h>
link_libraries(m)
add_library(${BINARY}-core
STATIC
${SOURCES}
)