25 lines
829 B
CMake
25 lines
829 B
CMake
# This file is part of the Valijson package.
|
|
# It defines the configuration options for the Valijson library.
|
|
|
|
# Define the version number of the Valijson library.
|
|
set(VALIJSON_VERSION_MAJOR 1)
|
|
set(VALIJSON_VERSION_MINOR 0)
|
|
set(VALIJSON_VERSION_PATCH 0)
|
|
|
|
# Define the include directories for the Valijson library.
|
|
set(VALIJSON_INCLUDE_DIRS "/usr/include")
|
|
|
|
# Define the libraries that the Valijson library depends on.
|
|
#set(VALIJSON_LIBRARIES "")
|
|
|
|
# Define the compiler flags used when building the Valijson library.
|
|
#set(VALIJSON_COMPILE_FLAGS "")
|
|
|
|
# Define the linker flags used when building the Valijson library.
|
|
#set(VALIJSON_LINK_FLAGS "")
|
|
|
|
# Define the exported targets for the Valijson library.
|
|
#set(VALIJSON_EXPORTED_TARGETS "")
|
|
|
|
# Define the imported targets for the Valijson library.
|
|
#set(VALIJSON_IMPORTED_TARGETS "")
|