Azur/libnum/CMakeLists.txt

17 lines
690 B
CMake
Raw Normal View History

#-----------------------------------------------------------------------------#
# ," /\ ", Azur: A game engine for CASIO fx-CG and PC #
# | _/__\_ | Designed by Lephe' and the Planète Casio community. #
# "._`\/'_." License: MIT <https://opensource.org/licenses/MIT> #
#-----------------------------------------------------------------------------#
# libnum build system
2022-06-02 22:18:28 +02:00
add_library(num STATIC
src/static_checks.cpp)
2022-06-02 22:18:28 +02:00
target_include_directories(num PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include")
2022-06-02 22:18:28 +02:00
# Library file: libnum.a
install(TARGETS num DESTINATION ${LIBDIR})
# Headers: azur/*.h
install(DIRECTORY include/ DESTINATION ${INCDIR})