You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
17 lines
403 B
12 years ago
|
include_directories("../../Plasma/CoreLib")
|
||
|
|
||
|
if(WIN32)
|
||
|
include_directories(${DirectX_INCLUDE_DIR})
|
||
|
endif(WIN32)
|
||
|
|
||
|
set(plShaderAssembler_SOURCES
|
||
|
main.cpp
|
||
|
)
|
||
|
|
||
|
|
||
|
add_executable(plShaderAssembler ${plShaderAssembler_SOURCES})
|
||
|
target_link_libraries(plShaderAssembler ${DirectX_LIBRARIES})
|
||
|
target_link_libraries(plShaderAssembler CoreLib)
|
||
|
|
||
|
source_group("Source Files" FILES ${plShaderAssembler_SOURCES})
|