9 lines
234 B
CMake
9 lines
234 B
CMake
set(OFX_SUPPORT_HEADER_DIR "include")
|
|
file(GLOB_RECURSE OFX_SUPPORT_HEADER_FILES "${OFX_SUPPORT_HEADER_DIR}/*.h")
|
|
|
|
add_subdirectory(Library)
|
|
if(BUILD_EXAMPLE_PLUGINS)
|
|
add_subdirectory(Plugins)
|
|
add_subdirectory(PropTester)
|
|
endif()
|