generated from aselimov/cpp_project_template
11 lines
169 B
CMake
11 lines
169 B
CMake
project(${CMAKE_PROJECT_NAME}_lib)
|
|
|
|
set(HEADER_FILES
|
|
vec3.h
|
|
)
|
|
|
|
# The library contains header and source files.
|
|
add_library(${CMAKE_PROJECT_NAME}_lib
|
|
INTERFACE
|
|
)
|