RingRacers/libs/ACSVM/include/CAPI/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

55 lines
1.1 KiB
CMake

##-----------------------------------------------------------------------------
##
## Copyright (C) 2015 David Hill
##
## See COPYING for license information.
##
##-----------------------------------------------------------------------------
##
## CMake file for acsvm-capi.
##
##-----------------------------------------------------------------------------
##----------------------------------------------------------------------------|
## Environment Configuration |
##
include_directories(.)
##----------------------------------------------------------------------------|
## Targets |
##
##
## acsvm-capi
##
add_library(acsvm-capi ${ACSVM_SHARED_DECL}
Array.cpp
Array.h
BinaryIO.cpp
BinaryIO.h
Environment.cpp
Environment.h
Floats.cpp
Floats.h
Module.cpp
Module.h
PrintBuf.cpp
PrintBuf.h
Scope.cpp
Scope.h
String.cpp
String.h
Thread.cpp
Thread.h
Types.h
)
target_link_libraries(acsvm-capi acsvm-util)
ACSVM_INSTALL_LIB(acsvm-capi)
## EOF