dev/c/cmake_tutorial/step4/MathFunctions/CMakeLists.txt

6 lines
176 B
CMake

add_library (MathFunctions mysqrt.cxx)
# add the install targets and files
install (TARGETS MathFunctions DESTINATION bin)
install (FILES MathFunctions.h DESTINATION include)