Last active
October 4, 2019 13:48
-
-
Save fwsGonzo/147a860d20e5bbf644b1b324be33b67a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required (VERSION 3.0.2) | |
project (vmod C) | |
include(../cmake/vmod.cmake vmod) | |
add_vmod(vmod_example vmod_example.vcc "Example VMOD" | |
vmod_example.c | |
) | |
vmod_add_tests(vmod_example | |
tests/vtc01.vtc | |
) | |
# for those interested in versioning the shared object | |
set_target_properties(vmod_example PROPERTIES | |
VERSION 1 # build version | |
SOVERSION 1 # API version | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment