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