renaming of functions and variables in cmake-library
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
if ( NOT DEFINED BUILD_APPS )
|
||||
set( BUILD_APPS true CACHE BOOL "Enable or disable building of apps" )
|
||||
@@ -48,7 +48,7 @@ if ( BUILD_APPS )
|
||||
Qt5OpenGL
|
||||
Qt5Gui
|
||||
)
|
||||
acg_qt5 ()
|
||||
vci_qt5 ()
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
endif()
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
@@ -21,9 +21,9 @@ set (sources
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
acg_add_executable (DecimaterGui WIN32 ${sources} ${headers})
|
||||
vci_add_executable (DecimaterGui WIN32 ${sources} ${headers})
|
||||
else ()
|
||||
acg_add_executable (DecimaterGui ${sources} ${headers} )
|
||||
vci_add_executable (DecimaterGui ${sources} ${headers} )
|
||||
endif ()
|
||||
|
||||
target_link_libraries (DecimaterGui
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (commandlineDecimater ../decimater.cc)
|
||||
vci_add_executable (commandlineDecimater ../decimater.cc)
|
||||
|
||||
target_link_libraries (commandlineDecimater
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../..
|
||||
)
|
||||
|
||||
acg_add_executable (Dualizer dualizer.cc)
|
||||
vci_add_executable (Dualizer dualizer.cc)
|
||||
|
||||
target_link_libraries (Dualizer
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../..
|
||||
@@ -20,9 +20,9 @@ set( sources
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
acg_add_executable( ProgViewer WIN32 ${sources} ${headers})
|
||||
vci_add_executable( ProgViewer WIN32 ${sources} ${headers})
|
||||
else ()
|
||||
acg_add_executable( ProgViewer ${sources} ${headers})
|
||||
vci_add_executable( ProgViewer ${sources} ${headers})
|
||||
endif ()
|
||||
|
||||
target_link_libraries ( ProgViewer
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../..
|
||||
@@ -22,9 +22,9 @@ set (headers
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
acg_add_executable (QtViewer WIN32 ${sources} ${headers})
|
||||
vci_add_executable (QtViewer WIN32 ${sources} ${headers})
|
||||
else ()
|
||||
acg_add_executable (QtViewer ${sources} ${headers})
|
||||
vci_add_executable (QtViewer ${sources} ${headers})
|
||||
endif ()
|
||||
|
||||
target_link_libraries (QtViewer
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (Smoothing smooth.cc)
|
||||
vci_add_executable (Smoothing smooth.cc)
|
||||
|
||||
target_link_libraries (Smoothing
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
@@ -20,9 +20,9 @@ set (sources
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
acg_add_executable (SubdividerGui WIN32 ${sources} ${headers})
|
||||
vci_add_executable (SubdividerGui WIN32 ${sources} ${headers})
|
||||
else ()
|
||||
acg_add_executable (SubdividerGui ${sources} ${headers})
|
||||
vci_add_executable (SubdividerGui ${sources} ${headers})
|
||||
endif ()
|
||||
|
||||
target_link_libraries (SubdividerGui
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (commandlineAdaptiveSubdivider ../adaptive_subdivider.cc)
|
||||
vci_add_executable (commandlineAdaptiveSubdivider ../adaptive_subdivider.cc)
|
||||
|
||||
target_link_libraries (commandlineAdaptiveSubdivider
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (commandlineSubdivider ../subdivider.cc)
|
||||
vci_add_executable (commandlineSubdivider ../subdivider.cc)
|
||||
|
||||
target_link_libraries (commandlineSubdivider
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (Analyzer vdpmanalyzer.cc)
|
||||
vci_add_executable (Analyzer vdpmanalyzer.cc)
|
||||
|
||||
target_link_libraries (Analyzer
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
@@ -17,9 +17,9 @@ set (sources
|
||||
|
||||
|
||||
if (WIN32)
|
||||
acg_add_executable (Synthesizer WIN32 ${sources} ${headers})
|
||||
vci_add_executable (Synthesizer WIN32 ${sources} ${headers})
|
||||
else ()
|
||||
acg_add_executable (Synthesizer ${sources} ${headers})
|
||||
vci_add_executable (Synthesizer ${sources} ${headers})
|
||||
endif ()
|
||||
|
||||
target_link_libraries (Synthesizer
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
acg_add_executable (mkbalancedpm mkbalancedpm.cc)
|
||||
vci_add_executable (mkbalancedpm mkbalancedpm.cc)
|
||||
|
||||
target_link_libraries (mkbalancedpm
|
||||
OpenMeshCore
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
include (ACGCommon)
|
||||
include (VCICommon)
|
||||
|
||||
include_directories (
|
||||
../../..
|
||||
)
|
||||
|
||||
acg_add_executable (mconvert mconvert.cc)
|
||||
vci_add_executable (mconvert mconvert.cc)
|
||||
|
||||
target_link_libraries (mconvert
|
||||
OpenMeshCore
|
||||
|
||||
Reference in New Issue
Block a user