RingRacers/libs/ACSVM/include/Util/CMakeLists.txt
Sally Coolatta 26477941ed Attempt using ACSVM to implement
It's having trouble linking the dll on Windows currently
2022-10-03 01:23:58 -04:00

38 lines
888 B
CMake

##-----------------------------------------------------------------------------
##
## Copyright (C) 2015 David Hill
##
## See COPYING for license information.
##
##-----------------------------------------------------------------------------
##
## CMake file for acsvm-util.
##
##-----------------------------------------------------------------------------
##----------------------------------------------------------------------------|
## Environment Configuration |
##
include_directories(.)
##----------------------------------------------------------------------------|
## Targets |
##
##
## acsvm-capi
##
add_library(acsvm-util ${ACSVM_SHARED_DECL}
Floats.cpp
Floats.hpp
)
target_link_libraries(acsvm-util acsvm)
ACSVM_INSTALL_LIB(acsvm-util)
## EOF