X-Git-Url: https://harrygodden.com/git/?p=convexer.git;a=blobdiff_plain;f=nbvtf%2FCMakeLists.txt;fp=nbvtf%2FCMakeLists.txt;h=0000000000000000000000000000000000000000;hp=8b3eb41023283e39f9638f300ffecd43c6651319;hb=12102f7b89f21fe5148e9a4506f505fcaef98da2;hpb=7a7000b2a485ca28219d3c7449db9d9291398902 diff --git a/nbvtf/CMakeLists.txt b/nbvtf/CMakeLists.txt deleted file mode 100644 index 8b3eb41..0000000 --- a/nbvtf/CMakeLists.txt +++ /dev/null @@ -1,29 +0,0 @@ -project( nbvtf ) - -# RGBCX C++ -> C Wrapper object -add_library( rgbcx OBJECT librgbcx.cpp ) - -# NBVTF C object -add_library( onbvtf OBJECT nbvtf.c ) -target_compile_definitions( onbvtf PRIVATE USE_LIBRGBCX ) -set_property( TARGET onbvtf PROPERTY POSITION_INDEPENDENT_CODE ON ) - -# NBVTF Shared object -add_library( ${PROJECT_NAME} SHARED ) -target_link_libraries( ${PROJECT_NAME} PRIVATE rgbcx onbvtf ) - -target_compile_options( ${PROJECT_NAME} - PRIVATE -Wall -Wno-unused-variable -Wno-unused-function - -std=c99 -pedantic -) - -# Extra tools -add_library( otovtf OBJECT vtf_cmd.c nbvtf.h ) -target_compile_definitions( otovtf PRIVATE USE_LIBRGBCX ) -add_executable( tovtf ) -target_link_libraries( tovtf PRIVATE rgbcx otovtf ) - -add_library( otodds OBJECT dds_cmd.c nbvtf.h ) -target_compile_definitions( otodds PRIVATE USE_LIBRGBCX ) -add_executable( todds ) -target_link_libraries( todds PRIVATE rgbcx otodds )