Compile fix

--HG--
branch : feature-material-editor
hg/feature/material-editor
kaetemi 9 years ago
parent 8c6952b268
commit 197ffd7c6a

@ -103,7 +103,7 @@ public:
{
releaseError();
m_ErrorLog = nlfopen(errorLog, "wt");
m_ErrorLog = NLMISC::nlfopen(errorLog, "wt");
fwrite(s_ErrorHeader.c_str(), 1, s_ErrorHeader.length(), m_ErrorLog);
fwrite("\n", 1, 1, m_ErrorLog);
fflush(m_ErrorLog);
@ -114,7 +114,7 @@ public:
{
releaseDepend();
m_DependLog = nlfopen(dependLog, "wt");
m_DependLog = NLMISC::nlfopen(dependLog, "wt");
fwrite(s_DependHeader.c_str(), 1, s_DependHeader.length(), m_DependLog);
fwrite("\n", 1, 1, m_DependLog);
// fflush(m_DependLog);

@ -17,7 +17,6 @@ ADD_EXECUTABLE(nl_mesh_editor WIN32 ${SRC}
${HDRS}
${RSRC}
${RESOURCE_ADDED}
${PANOPLY_MAKER}
)
IF(QT_STATIC)
@ -30,6 +29,7 @@ TARGET_LINK_LIBRARIES(nl_mesh_editor
nelmisc
nel3d
nelsound
nelpipeline
shared_widgets
mesh_utils)

Loading…
Cancel
Save