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

48 lines
1 KiB
CMake

##-----------------------------------------------------------------------------
##
## Copyright (C) 2015 David Hill
##
## See COPYING for license information.
##
##-----------------------------------------------------------------------------
##
## CMake file for acsvm-exec.
##
##-----------------------------------------------------------------------------
##----------------------------------------------------------------------------|
## Environment Configuration |
##
include_directories(.)
##----------------------------------------------------------------------------|
## Targets |
##
##
## acsvm-exec
##
add_executable(acsvm-exec
main_exec.cpp
)
target_link_libraries(acsvm-exec acsvm-util)
##
## acsvm-execc
##
## Used to test the C API.
##
if(EXISTS "${CMAKE_SOURCE_DIR}/CAPI")
add_executable(acsvm-execc
main_execc.c
)
target_link_libraries(acsvm-execc acsvm-capi)
endif()
## EOF