Actualizado Makefile para crear releases. Ejecutable pasa a estar en la raíz
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#include "asset.h"
|
||||
|
||||
// Constructor
|
||||
Asset::Asset(std::string path)
|
||||
Asset::Asset(std::string executablePath)
|
||||
{
|
||||
executablePath = path;
|
||||
this->executablePath = executablePath.substr(0, executablePath.find_last_of("\\/"));
|
||||
longestName = 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ private:
|
||||
|
||||
public:
|
||||
// Constructor
|
||||
Asset(std::string path);
|
||||
Asset(std::string executablePath);
|
||||
|
||||
// Destructor
|
||||
~Asset();
|
||||
|
||||
Reference in New Issue
Block a user