Explorar el Código

Update tools/CMakeLists.txt

Daniele Bartolini hace 13 años
padre
commit
f0d3adf547
Se han modificado 1 ficheros con 10 adiciones y 2 borrados
  1. 10 2
      tools/CMakeLists.txt

+ 10 - 2
tools/CMakeLists.txt

@@ -12,8 +12,16 @@ link_libraries(${FREETYPE_LIBRARIES})
 endif (FREETYPE_FOUND)
 
 add_executable(fontgen fontgen/fontgen.cpp)
-add_executable(rescomp rescomp/rescomp.cpp)
+
+add_executable(text-compiler resource-compilers/text-compiler.cpp)
+add_executable(texture-compiler resource-compilers/texture-compiler.cpp)
+
+add_executable(resource-linker resource-compilers/resource-linker.cpp)
 
 target_link_libraries(fontgen crown)
-target_link_libraries(rescomp crown)
+
+target_link_libraries(text-compiler crown)
+target_link_libraries(texture-compiler crown)
+
+target_link_libraries(resource-linker crown)