|
|
@@ -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)
|
|
|
|