mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-17 12:12:10 -04:00
8 lines
290 B
CMake
8 lines
290 B
CMake
add_executable(egg2obj eggToObj.cxx eggToObj.h)
|
|
target_link_libraries(egg2obj p3objegg p3eggbase)
|
|
install(TARGETS egg2obj DESTINATION bin)
|
|
|
|
add_executable(obj2egg objToEgg.cxx objToEgg.h)
|
|
target_link_libraries(obj2egg p3objegg p3eggbase p3progbase)
|
|
install(TARGETS obj2egg DESTINATION bin)
|