336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

왜 기본 옵션에 없는지 


출처 : http://mattperdeck.com/post/Copying-linked-content-files-at-each-build-using-MSBuild.aspx


정리


.csproj 파일 열어서 xml <Project> 요기에  </Project>   



<Target Name="CopyLinkedContentFiles" BeforeTargets="Build">

    <Copy SourceFiles="%(Content.Identity)" 

          DestinationFiles="%(Content.Link)" 

          SkipUnchangedFiles='true' 

          OverwriteReadOnlyFiles='true' 

          Condition="'%(Content.Link)' != ''" />

 </Target>


추가 

' > 코딩' 카테고리의 다른 글

centos 6.x node 4.x 설치  (0) 2016.11.02
boost fusion을 이용한 멤버기반 class 복사하기  (0) 2016.08.24
ptthread 관련 링크  (0) 2015.01.28
nginx 설치 정리  (0) 2013.04.17
C# Amazon S3Region 의미  (0) 2013.04.16
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

ibm 사이트 인데 이게 갑인듯 2편 까지 있음


위 사이트를 보고 만든큐 코코스2d 작업용으로 딱임


#pragma once


#include <pthread.h>

#include <list>



template <class T>

class CC_EX_DLL BlockingQueue { 


public: 

   BlockingQueue ( ) { 

       pthread_mutex_init(&_lock, NULL); 

       pthread_cond_init(&_cond, NULL);

    } 

    ~BlockingQueue ( ) { 

       pthread_mutex_destroy(&_lock);

       pthread_cond_destroy(&_cond);

    } 

    

    T * pop( ) 

    { 

       pthread_mutex_lock(&_lock);

       while (_list.empty( )) { 

           pthread_cond_wait(&_cond, &_lock) ;

       }

       T * _temp = _list.front( );

       _list.pop_front( );

       pthread_mutex_unlock(&_lock);

       return _temp;

    }

    

    void push(T * value ) 

    { 

       pthread_mutex_lock(&_lock);

       const bool was_empty = _list.empty( );

       _list.push_back(value);

       pthread_mutex_unlock(&_lock);

       if (was_empty) 

           pthread_cond_broadcast(&_cond);

    }


private: 

    std::list<T*> _list; 

    pthread_mutex_t _lock;

    pthread_cond_t _cond;

};



' > 코딩' 카테고리의 다른 글

boost fusion을 이용한 멤버기반 class 복사하기  (0) 2016.08.24
C# 링크로 파일 추가 시 빌드때 자동 복사  (0) 2015.01.29
nginx 설치 정리  (0) 2013.04.17
C# Amazon S3Region 의미  (0) 2013.04.16
ZooKeeper C#  (0) 2013.04.10
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.



현재 이게임을 만들고 있다 ㅋ


전에 할려고 했던 mvc + netty 조합은 엔씨로 넘어 오면서 물건너 간거 같고


mvc  + nc socket server 로 조합해야 할거 같다 





' > 일상' 카테고리의 다른 글

요즘 그냥 이것 저것 공부 중  (2) 2014.08.27
옛날 스윙 출때 모습이 인터넷 신문에 ~  (0) 2012.07.31
노군2세  (0) 2012.06.27
선물받은 로즈허브  (0) 2012.06.17
요즘에 사고 싶은차  (0) 2012.05.22

+ Recent posts